简体   繁体   English

当我尝试导入 minerl 时出现错误

[英]I get an error when I try to import minerl

I tried to make a AI for minecraft using python's library minerl.我尝试使用 python 的库 minerl 为我的世界制作一个 AI。

import gym
import minerl

env = gym.make('MineRLObtainDiamond-v0')

But for some reason I get this error:但出于某种原因,我收到此错误:

self.shape = ()
AttributeError: can't set attribute

Can someone tell me why I get an error?有人能告诉我为什么会出错吗?

I run it on the latest python version, python 3.9.7, on Pycharm and I use Windows 10 build 19402.我在最新的 python 版本 python 3.9.7 和 Pycharm 上运行它,我使用 Windows 10 build 19402。

You have too new gym installed.你安装的健身房太新了。 Run the command:运行命令:

pip install gym==0.19 and try again. pip install gym==0.19然后重试。

https://github.com/minerllabs/minerl/issues/620 https://github.com/minerllabs/minerl/issues/620

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 尝试导入模块时出错 - Error when I try to import a module 当我尝试在 VSCode 中导入 scrapy 时,我收到一条导入错误消息 - When I try to import scrapy in VSCode I get an import error message 我通过 pip 安装了 matplotlib,但是当我尝试将 matplotlib 导入 PyCharm 时出现错误 - I installed matplotlib via pip but when I try to import matplotlib to PyCharm I get an error 我已经在Windows中安装了TensorFlow,但是当我尝试将其导入Jupyter Notebook时出现错误 - I have installed TensorFlow in my Windows but I get an Error when I try to import it in my Jupyter Notebook 为什么我尝试导入 oct2py 时出现以下错误? - Why do I get the following error when I try to import oct2py? 当我尝试导入存储孩子的字典时,我收到 ValueError: Duplicated timeseries in CollectorRegistry 错误 - I get the ValueError: Duplicated timeseries in CollectorRegistry error, when i try to import the Dict where the childs are stored 当我尝试导入 facebook 先知时:pip 安装 fbprophet ...我总是收到此错误 - when i try to import facebook prophet: pip install fbprophet ... i alway get this error 当我尝试导入 lxml.html 时出现导入错误 - import error when i try to import lxml.html Python:为什么在尝试导入地理面板时出现错误? - Python: why do I get an error when I try to import geopands? 当我尝试导入乌龟时,我不断收到错误消息 - i keep getting an error when i try and import turtle
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM