You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, when I complete the installation step by step, and I try to run the " python scripts/train.py --config-name dummy +experiments/obstacle_avoidance=train_prodmp_transformer". But I got error, and I can't find the solution. Can you give the gymnasium's version or solve this error? Thanks a lot. Traceback (most recent call last): File "/home/lxc/movement-primitive-diffusion/scripts/train.py", line 14, in <module> from movement_primitive_diffusion.utils.setup_helper import setup_train, setup_wandb_metrics, get_group_from_override File "/home/lxc/movement-primitive-diffusion/movement_primitive_diffusion/utils/setup_helper.py", line 17, in <module> from movement_primitive_diffusion.workspaces.base_vector_workspace import BaseVectorWorkspace File "/home/lxc/movement-primitive-diffusion/movement_primitive_diffusion/workspaces/base_vector_workspace.py", line 16, in <module> from movement_primitive_diffusion.utils.gym_utils.async_vector_env import AsyncVectorEnv File "/home/lxc/movement-primitive-diffusion/movement_primitive_diffusion/utils/gym_utils/async_vector_env.py", line 37, in <module> from movement_primitive_diffusion.utils.gym_utils.vector_env import VectorEnv File "/home/lxc/movement-primitive-diffusion/movement_primitive_diffusion/utils/gym_utils/vector_env.py", line 11, in <module> from gymnasium.vector.utils.spaces import batch_space ModuleNotFoundError: No module named 'gymnasium.vector.utils.spaces'
The text was updated successfully, but these errors were encountered:
I have updated the correct import path in this commit e378d87 . Could you update your local repo and try again?
Best, Paul
Hi Paul, Thanks for your help!
I update the local repo and try again, and the problem is solved. But a new error appear
`File "/home/lxc/movement-primitive-diffusion/movement_primitive_diffusion/utils/video.py", line 4, in
from moviepy.video.fx.resize import resize
ModuleNotFoundError: No module named 'moviepy.video.fx.resize'
I'm already install the moviepy and I find the function in moviepy documentation, but why this error appear
Thanks a lot, daken
Hi @lidaken
did you checkout the most recent commit on main? In addition to the gymanisum fix, I pushed the fix for moviepy and another missing dependency.
Hello, when I complete the installation step by step, and I try to run the " python scripts/train.py --config-name dummy +experiments/obstacle_avoidance=train_prodmp_transformer". But I got error, and I can't find the solution. Can you give the gymnasium's version or solve this error? Thanks a lot.
Traceback (most recent call last): File "/home/lxc/movement-primitive-diffusion/scripts/train.py", line 14, in <module> from movement_primitive_diffusion.utils.setup_helper import setup_train, setup_wandb_metrics, get_group_from_override File "/home/lxc/movement-primitive-diffusion/movement_primitive_diffusion/utils/setup_helper.py", line 17, in <module> from movement_primitive_diffusion.workspaces.base_vector_workspace import BaseVectorWorkspace File "/home/lxc/movement-primitive-diffusion/movement_primitive_diffusion/workspaces/base_vector_workspace.py", line 16, in <module> from movement_primitive_diffusion.utils.gym_utils.async_vector_env import AsyncVectorEnv File "/home/lxc/movement-primitive-diffusion/movement_primitive_diffusion/utils/gym_utils/async_vector_env.py", line 37, in <module> from movement_primitive_diffusion.utils.gym_utils.vector_env import VectorEnv File "/home/lxc/movement-primitive-diffusion/movement_primitive_diffusion/utils/gym_utils/vector_env.py", line 11, in <module> from gymnasium.vector.utils.spaces import batch_space ModuleNotFoundError: No module named 'gymnasium.vector.utils.spaces'
The text was updated successfully, but these errors were encountered: