获取错误当我使用'pip install -e'在Windows中安装'OpenAI baselines'时

问题描述 投票:0回答:1

我是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\
pip install openai-gym
1个回答
0
投票

https://github.com/openai/baselines/blob/1b092434fc51efcb25d6650e287f07634ada1e08/setup.py#L61

需要TensorFlow,版本高于1.4

如果你有pip install -U tensorflow,那么运行pip install -U tensorflow-gpua supported GPU

© www.soinside.com 2019 - 2024. All rights reserved.