使用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

即可继续。。。




版权声明:本文为zhangchun3211原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。