在 Ubuntu 上安装 Python 3 版 TensorFlow 时出现错误

在 Ubuntu 上安装 Python 3 版 TensorFlow 时出现错误

今天我尝试安装不带 GPU 的 Google TensorFlow for Python 3。当我运行以下命令时:

sudo -H pip3 install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp34-cp34m-linux_x86_64.wh

它会引发错误:

tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl is not a supported wheel on this platform

我知道已经有一个问题有正确的答案,但该答案适用于 Python 2.7。任何帮助都值得赞赏。

答案1

目前,根据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

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

相关内容