Importing module ‘gym_37’ (/home/hello/anaconda3/envs/chenge_project/lib/python3.7/site-packages/isaacgym/_bindings/linux-x86_64/gym_37.so)
Setting GYM_USD_PLUG_INFO_PATH to /home/hello/anaconda3/envs/chenge_project/lib/python3.7/site-packages/isaacgym/_bindings/linux-x86_64/usd/plugInfo.json
Traceback (most recent call last):
File “/home/hello/isaacgym/IsaacGymEnvs-main/isaacgymenvs/train.py”, line 42, in
from isaacgymenvs.utils.reformat import omegaconf_to_dict, print_dict
File “/home/hello/anaconda3/envs/chenge_project/lib/python3.7/site-packages/isaacgymenvs/init.py”, line 5, in
from isaacgymenvs.utils.reformat import omegaconf_to_dict
ModuleNotFoundError: No module named ‘isaacgymenvs.utils’
Hi @1546532656 ,
Did you run the pip install -e .
step in the base IsaacGymEnvs directory first?
Take care,
-Gav
Hi I am running into this as well and have run the pip install -e . step
Hi @kethan.tellis,
Did you pip install -e .
in both the IsaacGym and isaacgymenvs directories?
Can you run python
interactively in your conda environment and then execute this?
>>> import isaacgymenvs
>>> print (isaacgymenvs)
>>> print (isaacgymenvs.utils.reformat)
This should show the paths of the installed modules to confirm everything has been installed properly or if there’s something missing.
Take care,
-Gav