本文介绍了Tensorflow R1.0:找不到满足需求tensorflow的版本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在Windows上为Python安装Tensorflow 1.o.

I want to install Tensorflow 1.o for python on windows.

这是我的系统的信息.

D:\>python --version
Python 3.5.2 :: Anaconda 4.2.0 (32-bit)

D:\>pip3 --version
pip 9.0.1 from d:\web\anaconda\lib\site-packages (python 3.5)'

但是,当我执行以下命令时,

D:\>pip3 install tensorflow
Collecting tensorflow
  Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow

我不明白问题是什么...

I don't understand what the problem is...

然后我尝试了另一种方式...

And I tried another way...

当我使用Conda时就是这种情况

(tensorflow) D:\>pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.0.0-cp35-cp35m-win_x86_64.whl
tensorflow-1.0.0-cp35-cp35m-win_x86_64.whl is not a supported wheel on this platform.

出什么问题了?

推荐答案

我遇到了同样的问题.

I was in same problem.

下面的命令解决了我的问题

Below command solved my problem

pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.0.0-py3-none-any.whl

要查找基于python版本和CPU或GPU的所有URL的列表,请仅参考: https://www.tensorflow.org/install/pip

to find the list of all the urls based on the python version and CPU or GPU only refer to:https://www.tensorflow.org/install/pip

这篇关于Tensorflow R1.0:找不到满足需求tensorflow的版本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 05:19