无法安装tensorflow=1.0.0

Tin*_*ina 3 python machine-learning tensorflow

我正在尝试在 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
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述

我已经尝试使用 anaconda v 5.2、Python v 3.6 安装

kar*_*spd 6

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

conda create --name tf1.0 pip python=3.5
activate tf1.0
pip install tensorflow==1.0
Run Code Online (Sandbox Code Playgroud)