pip安装Tensorflow模块问题:ERROR: Could not find a version that satisfies the requirement tensorflow==1.15.0rc (from versions: none) ERROR: No matching distribution found for tensorflow==1.15.0rc
原作者网址:https://blog.csdn.net/Hide_in_Code/article/details/80590747 (作者描述很详细,从发现问题--查阅资料--分析问题--解决问题--最终自己的总结。牛🐂。)
我就直截了当的说解决方法吧,主要是记录下自己遇到的问题。
使用pip安装tensorflow报错:ERROR: Could not find a version that satisfies the requirement tensorflow==1.15.0rc (from versions: none)
ERROR: No matching distribution found for tensorflow==1.15.0rc
解决办法:
1、检查python版本。好像目前tensorflow只支持python3.5.x 64bit~3.6.x 64bit版本。(重点:python版本必须是64bit的。32bit安装tensorflow还是会报错)
确认python版本是:python3.6.x-64bit,使用管理员权限直接在终端运行:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow ,就可以安装成功。
我用的是:python3.6.4-64bit版本。