我安装了python 3.5.2(64位),pip版本是9.0.1,但当我尝试安装tensorflow时,它说无法找到版本为什么:(

时间:2017-08-08 12:04:17

标签: python windows tensorflow pip

我安装了python 3.5.2(64位),pip版本是9.0.1但是当我尝试安装tensorflow时它说它找不到版本为什么呢。

Error

installation

2 个答案:

答案 0 :(得分:1)

Windows install docs

pip3 install --upgrade tensorflow-gpu
# only CPU version
pip3 install --upgrade tensorflow

答案 1 :(得分:0)

你的python版似乎没问题。我已经通过Anaconda在Windows 7上安装了TensorFlow。您应该为Python 3.6版本(64位)安装anaconda

检查anaconda安装是否正常

conda --version

此命令将返回类似“conda 4.3.21”的内容。如果显示conda版本,则使用以下命令继续创建tensorflow。

conda create -n tensorflow python = 3.5

然后,您需要激活张量流环境

activate tensorflow

最后,您应该运行以下命令

pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.2.1-cp35-cp35m-win_amd64.whl

video可能会在安装时帮助您。