如何安装旧版本的Tensorflow?

时间:2020-03-15 15:43:00

标签: python tensorflow pip anaconda

我遵循this教程。他使用Tensorflow 1.10.0。我也应该使用那个版本。因为本教程与Tensorflow的较新版本不兼容。

所以,当我打开Anaconda Prompt并编写

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

打底,我看到this长的错误消息。如何安装Tensorflow 1.10.0?

我也尝试过:

conda create --name="tfold" python=3.7
conda activate tfold
pip install tensorflow==1.10.0

我看到此错误消息:

ERROR: Could not find a version that satisfies the requirement tensorflow==1.10.0 (from versions: none)
ERROR: No matching distribution found for tensorflow==1.10.0

编辑:与Python 3.7兼容的最旧版本是1.13。我安装了Python 3.6。然后,我使用conda create -n test_env tensorflow=1.10.0

安装了它

1 个答案:

答案 0 :(得分:-1)

我认为问题是因为您使用的是python3.7

尝试使用pip而不是pip3

设置python = 2.7并使用pip install tensorflow == 1.10,对我来说很好。