已解决
操作系统:Ubuntu 16.04
Python 2.7-64位
Pip版本:18.1
嗨:
我试图按照python 2.7的说明在 python 2.7-64bits 中使用pip install tensorflow-gpu安装tensorflow:Tensorflow site
当我使用pip命令时:
pip install tensorflow-gpu
我得到以下输出:
Collecting tensorflow
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
我已经阅读了其他相关问题,它说tensorflow仅支持python 64位(我拥有)和python 3.6。但是在上面的链接中有在python 2.7中安装的说明。我需要在python 2.7中安装tensorflow,因为我的脚本使用了已安装且仅在python 2.7中可用的其他模块。
可以在python 2.7中安装tensorflow吗?
编辑:
我认为错误来自pip尝试安装的wheel文件的arch类型。我正在使用Jetson TX2。从此文件安装tensorflow-gpu似乎可行:
Link to the correct wheel file
我以前为 python 2.7 安装的命令:
$ sudo -E pip2 install tensorflow-gpu/tensorflow_gpu-1.9.0+nv18.8-cp27-cp27mu-linux_aarch64.whl
此问题的原始答案是here