代码拉取完成,页面将自动刷新
from os.path import join, dirname, realpath
from setuptools import setup
import sys
assert sys.version_info.major == 3 and sys.version_info.minor >= 6, \
"The Spinning Up repo is designed to work with Python 3.6 and greater." \
+ "Please install it before proceeding."
with open(join("spinup", "version.py")) as version_file:
exec(version_file.read())
setup(
name='spinup',
py_modules=['spinup'],
version=__version__,#'0.1',
install_requires=[
'cloudpickle==1.2.1',
'gym[atari,box2d,classic_control]>=0.10.8',
'ipython',
'joblib',
'matplotlib==3.1.1',
'mpi4py',
'numpy',
'pandas',
'pytest',
'psutil',
'scipy',
'seaborn==0.8.1',
'tensorflow>=1.8.0,<2.0',
'tqdm'
],
extras_require={'mujoco': 'mujoco-py==2.0.2.7'},
description="Teaching tools for introducing people to deep RL.",
author="Joshua Achiam",
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。