无法安装tensorflow = 1.0.0

时间:2018-06-05 19:36:42

标签: python tensorflow machine-learning

我正在尝试在Windows 10上安装tensorflow 1.0.0,但是,它显示了以下错误消息:

Could not find a version that satisfies the requirement tensorflow==1.0 (from versions ...
No matching distribution found for tensorflow==1.0

enter image description here

我已经尝试使用anaconda v 5.2,Python v 3.6

进行安装

2 个答案:

答案 0 :(得分:1)

我遇到了同样的问题。然后经过很多艰辛,我才知道anaconda版本> = 4.2.0不支持直接安装tensorflow版本1.0.0,因此,我安装了anaconda版本= 4.2.0并可以完美运行。 它需要直接安装:

pip install tensorflow==1.0.0

答案 1 :(得分:0)

尝试在anaconda中创建python 3.5 env它应该可以工作。

conda create --name tf1.0 pip python=3.5
activate tf1.0
pip install tensorflow==1.0