AttributeError: module 'gym' has no attribute 'benchmark_spec'
时间: 2023-11-13 15:04:59 浏览: 151
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
这个错误是因为gym库的版本过高,而benchmark_spec已经被弃用了。解决方法是将gym库的版本降低到0.9.0,可以使用以下命令进行降低版本:pip install gym==0.9.0 -i https://pypi.douban.com/simple。另外,也可以考虑更新代码以适应新版本的gym库。
阅读全文