I have a conda env with python 3.10.6 and gym==0.23.1
I open a new ipynb in my vscode and run
import gym
env = gym.make('CarRacing-v1')
and the kernel crashes with a message
The Kernel crashed while executing code in the the current cell or a previous cell. Please review the code in the cell(s) to identify a possible cause of the failure. Click here for more info. View Jupyter log for further details. Canceled future for execute_request message before replies were done
when i try
env = gym.make('LunarLander-v2')
it works normally.
Is there an issue with carracing in gym 0.23.1?