python - 无法在新的 ubuntu 分区 : tensorflow-0. 上安装 tensorflow 8.0-cp34-cp34m-linux_x86_64.whl 在此平台上不受支持

标签 python ubuntu tensorflow python-wheel

我安装了 pip3 并升级了它。尝试安装 tensorflow 时,我得到以下信息:

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 上的 Ask Ubuntu 上回答的问题相同:

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

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 的轮子应该很快就会出来。 .

关于python - 无法在新的 ubuntu 分区 : tensorflow-0. 上安装 tensorflow 8.0-cp34-cp34m-linux_x86_64.whl 在此平台上不受支持,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37425579/

相关文章:

python - 比丘达; nvcc 致命 : Visual Studio configuration file '(null)' could not be found

python - 基于时间的目录列表

android - AOSCompiler出现错误-CM10-Galaxy Nexus/maguro

python - 我如何在 Keras 中使用 tensorflow.python.ops?

python - 除了缩进使用 2 个空格外,如何在 PyCharm IDE 中启用 PEP8 检查?

python - 在 python 中创建新对象不会返回新对象

python - 如何更改QMenu字体大小

java - 不能把任何东西放到/var/lib/tomcat7/webapps/

ubuntu - 将 QEMU 命令行参数转换为 libvirt 域 xml

tensorflow - 使用 feed_dict 时的 Tensorflow 多 GPU 训练(数据并行)