使用pip安装tensorflow报错:tensorflow---- is not a supported wheel on this platform.

使用virtualenv方式安装tensorflow:

从https://pypi.python.org/pypi/tensorflow下载对应版本的tensorflow:tensorflow-1.3.0-cp27-cp27mu-manylinux1_x86_64.whl;

使用命令pip install --upgrade tensorflow-1.3.0-cp27-cp27mu-manylinux1_x86_64.whl;

报错:tensorflow-1.3.0-cp27-cp27mu-manylinux1_x86_64.whl is not a supported wheel on this platform。


参考博客:http://blog.csdn.net/qing101hua/article/details/52504403

将文件名改成:tensorflow-1.3.0-cp27-none-linux_x86_64.whl后,执行命令:

pip install --upgrade tensorflow-1.3.0-cp27-none-linux_x86_64.whl

即可继续。。。



你可能感兴趣的:(使用pip安装tensorflow报错:tensorflow---- is not a supported wheel on this platform.)