草庐IT

python - tensorflow r1.0 : could not a find a version that satisfies the requirement tensorflow

coder 2023-05-22 原文

我想在 windows 上安装 Tensorflow 1.o for python。

这是我系统的信息。

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

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

我尝试了另一种方法......

这是我使用 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.

有什么问题?

最佳答案

我遇到了同样的问题。

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

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

关于python - tensorflow r1.0 : could not a find a version that satisfies the requirement tensorflow,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42317075/

有关python - tensorflow r1.0 : could not a find a version that satisfies the requirement tensorflow的更多相关文章

随机推荐