File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ python -m myosuite.utils.examine_env --env_name myoElbowPose1D6MRandom-v0
57
57
mjpython -m myosuite.utils.examine_env --env_name myoElbowPose1D6MRandom-v0
58
58
```
59
59
60
- It is possible to take advantage of the latest MyoSkeleton. Once added (follow the instructions prompted by ` python myosuite_init.py ` ), run:
60
+ It is possible to take advantage of the latest MyoSkeleton. Once added (follow the instructions prompted by ` python -m myosuite_init ` ), run:
61
61
``` bash
62
62
python myosuite/utils/examine_sim.py -s myosuite/simhive/myo_model/myoskeleton/myoskeleton.xml
63
63
```
Original file line number Diff line number Diff line change 1
1
import os
2
- import sys
3
2
import re
4
- from setuptools import setup , find_packages
3
+ import sys
4
+
5
+ from setuptools import find_packages , setup
5
6
6
7
if sys .version_info .major != 3 :
7
8
print ("This Python is only compatible with Python 3, but you are running "
@@ -52,7 +53,7 @@ def package_files(directory):
52
53
"Topic :: Scientific/Engineering :: Artificial Intelligence " ,
53
54
"Operating System :: OS Independent" ,
54
55
],
55
- package_data = {'' : mjc_models_files },
56
+ package_data = {'' : mjc_models_files + [ '../myosuite_init.py' ] },
56
57
packages = find_packages (exclude = ("myosuite.agents" )),
57
58
python_requires = ">=3.8" ,
58
59
install_requires = fetch_requirements (),
You can’t perform that action at this time.
0 commit comments