Traceback (most recent call last):
File "/Users/----/Documents/Spring 2023/----/----/yum.py", line 10, in
env = gym.make("ALE/Breakout-v5", render_mode="rgb_array")
File "/Users/----/anaconda3/envs/----/lib/python3.10/site-packages/gymnasium/envs/registration.py", line 592, in make
_check_version_exists(ns, name, version)
File "/Users/----/anaconda3/envs/----/lib/python3.10/site-packages/gymnasium/envs/registration.py", line 218, in _check_version_exists
_check_name_exists(ns, name)
File "/Users/----/anaconda3/envs/----/lib/python3.10/site-packages/gymnasium/envs/registration.py", line 185, in _check_name_exists
_check_namespace_exists(ns)
File "/Users/----/anaconda3/envs/----/lib/python3.10/site-packages/gymnasium/envs/registration.py", line 180, in _check_namespace_exists
raise error.NamespaceNotFound(f"Namespace {ns} not found. {suggestion_msg}")
gymnasium.error.NamespaceNotFound: Namespace ALE not found. Have you installed the proper package for ALE?
Я просмотрел все подобные ошибки, которые люди обсуждали в Интернете, но не нашел подходящих для меня исправлений.
Я пытаюсь запустить среду OpenAI Gym: [code]env = gym.make("ALE/Breakout-v5", render_mode="rgb_array") [/code] Но я получаю следующую ошибку [code]Traceback (most recent call last): File "/Users/----/Documents/Spring 2023/----/----/yum.py", line 10, in env = gym.make("ALE/Breakout-v5", render_mode="rgb_array") File "/Users/----/anaconda3/envs/----/lib/python3.10/site-packages/gymnasium/envs/registration.py", line 592, in make _check_version_exists(ns, name, version) File "/Users/----/anaconda3/envs/----/lib/python3.10/site-packages/gymnasium/envs/registration.py", line 218, in _check_version_exists _check_name_exists(ns, name) File "/Users/----/anaconda3/envs/----/lib/python3.10/site-packages/gymnasium/envs/registration.py", line 185, in _check_name_exists _check_namespace_exists(ns) File "/Users/----/anaconda3/envs/----/lib/python3.10/site-packages/gymnasium/envs/registration.py", line 180, in _check_namespace_exists raise error.NamespaceNotFound(f"Namespace {ns} not found. {suggestion_msg}") gymnasium.error.NamespaceNotFound: Namespace ALE not found. Have you installed the proper package for ALE? [/code] Я просмотрел все подобные ошибки, которые люди обсуждали в Интернете, но не нашел подходящих для меня исправлений.