【发布时间】:2017-05-09 21:50:31
【问题描述】:
我正在尝试在运行 anaconda python 2.7.13 的 Windows 7 机器上安装 tensorflow。
C:\>python -V
Python 2.7.13 :: Anaconda 4.3.1 (64-bit)
我开始:
conda create -n tensorflow python=2.7
这提示我继续,我说是,它安装了几个包没有问题(似乎都指向 2.7 版本的 python)。
接下来我使用:
conda install -c conda-forge tensorflow
这给了我这个错误:
UnsatisfiableError: The following specifications were found to be in conflict:
- python 2.7*
- tensorflow -> python 3.5*
Use "conda info <package>" to see the dependencies for each package.
有什么建议可以解决这个问题吗?
编辑:我也试过这个:
C:\>pip3 install --upgrade tensorflow
'pip3' is not recognized as an internal or external command,
operable program or batch file.
下一个:
pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.1.0-cp35-cp35m-win_amd64.whl
并收到此错误消息:
tensorflow-1.1.0-cp35-cp35m-win_amd64.whl is not a supported wheel on this platf
orm.
【问题讨论】:
标签: python windows tensorflow installation