问题描述
我正在使用Visual Studio 2015,Python 3.5.2,Windows 10,并且最近已将pip升级到9.0.1.我正在尝试在我的系统上安装Tensorflow 0.12.我试图使用VS内置的安装Python包"功能以及命令提示符
I am using Visual Studio 2015, Python 3.5.2, Windows 10, and have recently upgraded pip to 9.0.1. I am trying to install Tensorflow 0.12 on my system. I tried to use VS's built in "Install Python Package" function, as well as command prompting
pip install python
两种方式我都遇到相同的错误:
Both ways I get the same error:
Installing 'tensorflow'
Collecting tensorflow
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
'tensorflow' failed to install. Exit code: 1`
我不知道该怎么办.大概pip命令是我所要做的,而其他地方都没有任何故障排除方法.
I don't know what to do from here. Supposedly the pip command was all I had to do so nowhere else has any troubleshooting.
Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2013, 22:01:18) [MSC v.1900 32 bit (Intel)] on win32
推荐答案
根据您的Python版本字符串,您正在运行32位版本的Python解释器.我们仅为Python 3.5的 64位版本制作了PIP软件包,可以从Python.org或Anaconda单独下载和安装.
According to your Python version string, you are running the 32-bit version of the Python interpreter. We have only made PIP packages for the 64-bit version of the Python 3.5, which can be downloaded and installed separately from Python.org or Anaconda.
这篇关于Windows上的TensorFlow:"pip install tensorflow"失败了的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!