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
import gymnasium as gym
env=gym.make('Humanoid-v5', render_mode='human')
obs=env.reset()
env.render()
An error was reported :
logger.deprecation(
File "D:\anaconda\envs\Gemma2b\lib\site-packages\gymnasium\envs\mujoco\mujoco_rendering.py", line 359, in __del__
File "D:\anaconda\envs\Gemma2b\lib\site-packages\gymnasium\envs\mujoco\mujoco_rendering.py", line 352, in free
File "D:\anaconda\envs\Gemma2b\lib\site-packages\glfw\__init__.py", line 2366, in get_current_context
AttributeError: 'NoneType' object has no attribute 'glfwGetCurrentContext'
When I take the solution given earlier:
import gymnasium as gym
env=gym.make('Humanoid-v5', render_mode='human')
obs=env.reset()
env.render()
breakpoint()
The result of the code run is: The mojoco simulation interface is not responding
The text was updated successfully, but these errors were encountered:
Question
Hi!I have some questions for you
background:
I run the code below:
An error was reported :
When I take the solution given earlier:
The result of the code run is: The mojoco simulation interface is not responding
The text was updated successfully, but these errors were encountered: