如题,安装过atari_py,但在import时出现"lib\ctypes\__init__.py", line 364, in __init__ self._handle = _dlopen(self._name, mode) OSError: [WinError 126] 找不到指定的模块。"
打印了self.name
,其值为D:\software\Anaconder3\envs\testrl\lib\site-packages\atari_py\ale_interface/ale_c.dll
,我本地是存在这个dll文件的。
国内的帖子都不奏效,大部分是在说缺少.dll文件。国外的帖子https://github.com/openai/gym/issues/672,谈论的蛮激烈感觉不是我这个问题不是make相关。
最终解决:https://www.pythonf.cn/read/167592
卸载atari_py,重新安装atari_py==1.2.2,pip install --no-index -f https://github.com/Kojoley/atari-py/releases atari_py
,有可能得添加信任(并取消代理),即pip install --no-index -f https://github.com/Kojoley/atari-py/releases atari_py --trusted-host github.com
而且必须从这个链接下载,如果直接安装pip install atari_py==1.2.2
会报错
pip install -f https://download.pytorch.org/whl/torch_stable.html torch1.7.0+cpu torchvision0.8.1+cpu torchaudio===0.7.0
使用过程中import torch
出现ModuleNotFoundError: No module named '_ctypes'
解决:
命令行sudo apt-get install libffi-dev
之后重新生成安装文件(已虚拟环境中已安装的库不受影响),即cd Python-3.6.15
make && make install
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)