首页 > 解决方案 > 无法安装 TensorFlow 1.x

问题描述

我正在尝试为我要使用的软件包安装 Tensorflow 1.14。我试过了: pip3 uninstall tensorflow

然后我尝试使用以下方法安装 Tensorflow 1.14: pip3 install tensorflow==1.14

我收到以下错误 ERROR: Could not find a version that satisfies the requirement tensorflow==1.14 (from versions: 2.2.0rc3, 2.2.0rc4, 2.2.0, 2.3.0rc0, 2.3.0rc1, 2.3.0rc2) ERROR: No matching distribution found for tensorflow==1.14

我还尝试制作一个新的虚拟环境并尝试了以下命令,但没有成功。有没有办法安装 Tensorflow 1?

标签: pythontensorflow

解决方案


我在话语中发现的:

You just need to make sure you’re using Python 3.5, 3.6 or 3.7. TensorFlow 1.15 does not support Python 3.8


推荐阅读