我是python的新手,我想在Windows中安装OpenAI基准。并且我遵循https://github.com/openai/baselines中的官方安装指南。但是,当我运行代码pip install -e。时,出现以下错误:
我认为也许我需要修改setup.py,但我不知道如何解决。
assert LooseVersion(re.sub(r'-?rc\d+$', '', tf_pkg.version)) >= LooseVersion('1.4.0')
AssertionError
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in D:\myGitHub\baselines\
答案 0 :(得分:0)
https://github.com/openai/baselines/blob/1b092434fc51efcb25d6650e287f07634ada1e08/setup.py#L61:
需要TensorFlow,版本高于1.4
因此,如果您有a supported GPU,请运行pip install -U tensorflow
或pip install -U tensorflow-gpu
。