找不到满足tensorflow-gpu == 1.7.0要求的版本

时间:2020-04-25 00:37:21

标签: python tensorflow pip

我正在尝试安装tensorflow-gpu ver。 1.7.0在虚拟环境中使用pip。我的python版本是2.7.12,我的操作系统是Scientific Linux ver。 7.4(氮气)。当我尝试以下

pip install tensorflow-gpu==1.7.0

我收到以下错误:

ERROR: Could not find a version that satisfies the requirement tensorflow-gpu==1.7.0 (from versions: none)
ERROR: No matching distribution found for tensorflow-gpu==1.7.0

帮助?

1 个答案:

答案 0 :(得分:0)

如果

bind_rows()

返回$ python2 -c "from pip._internal.pep425tags import get_supported; print(get_supported()[0])" ,这意味着您的发行版发行了没有广泛Unicode支持的Python 2.7编译版本。 cp27-cp27m-manylinux2014_x86_64仅支持经过广泛Unicode支持(标记tensorflow)编译的Python 2.7,因此无法使用默认的Python 2.7安装。要么切换到Python 3(默认情况下支持广泛的unicode),要么从源代码编译Python 2.7,将cp27-cp27mu-...传递给--enable-unicode=ucs4脚本。