我正在尝试使用以下设置安装tensorflow 1.3.0:
python 3.6.3
pip 9.0.1
Windows 10 on x64
我试过了
pip install https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-cpu-windows-x86_64-1.3.0-rc2.zip
但我明白了
Command "python setup.py egg_info" failed with error code 1 in C:\Users\__\AppData\Local\Temp\pip-0dabbj1v-build\
如果我尝试
pip install tensorflow-1.3.0
我得到了
Could not find a version that satisfies the requirement tensorflow-1.3.0 (from versions: )
No matching distribution found for tensorflow-1.3.0
知道如何让这个工作吗?任何想法/提示将不胜感激!
答案 0 :(得分:6)
请使用以下命令
pip install tensorflow==<version>
在获得tensorflow 1.3.0的情况下,同样使用它
pip install tensorflow==1.3.0
答案 1 :(得分:4)
在https://pypi.python.org/pypi/tensorflow/1.3.0中,下载所需版本的.whl
并使用pip
进行安装。