pip3 install tensorflow :Could not find a version that satisfies the requirement tensorflow

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/Void_worker/article/details/83586101

使用pip3 install tensorflow安装tensorflow的时候,显示:
Collecting tensorflow
Could not find a version that satisfies the requirement tensorflow (from versions: ) No matching distribution found for tensorflow

网上查了一下,可以
1.检查一下python的位数 32位or64位 [可以点这个]
2.检查一下python的版本

activate tensorflow
python -V

我一开始显示的python版本为 3.7.1,
将python版本改成3.6.5就好了…orz…
截至(2018.10.31),TensorFlow似乎并不支持python3.7 ?

解决方法:可以在anaconda navigator中修改一下python的版本,图是我修改为3.6.5后的结果。
在这里插入图片描述

然后就可以安装了…
在这里插入图片描述

安装成功~
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/Void_worker/article/details/83586101