无法在新的 ubuntu 分区上安装 Tensorflow:Tensorflow-0.8.0-cp34-cp34m-li



我安装了pip3并升级了它。尝试安装张量流时,我得到以下结果:

daniel@popeax:~$ sudo -H pip3 install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl
tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl is not a supported wheel on this platform.
You are using pip version 8.1.1, however version 8.1.2 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.

这个问题与我在 https://askubuntu.com/q/778698/15003 问 Ubuntu 上回答的问题相同:

目前,根据 https://github.com/tensorflow/tensorflow/issues/2188#issuecomment-216186066,解决方案是下载并重命名轮子并使用重命名的轮子进行安装:

wget https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl
mv tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl tensorflow-0.8.0-cp35-cp35m-linux_x86_64.whl
sudo -H pip3 install tensorflow-0.8.0-cp35-cp35m-linux_x86_64.whl

如果你愿意等一会儿,根据 https://github.com/tensorflow/tensorflow/issues/2188#issuecomment-220363241 的说法,Python 3.5的轮子应该很快就会出来。

最新更新