3

我想在新的tensorflow2.3中测试一些功能但是,我在安装过程中苦苦挣扎。

我看到了:当 conda 还不支持它时,如何在 Windows 上安装最新的 Tensorflow(这里:2.2)?

我执行了:pip install --upgrade pip

我有:

ERROR: Could not find a version that satisfies the requirement tensorflow-cpu==2.3.0rc2 (from versions: 1.15.0rc0, 1.15.0rc1, 1.15.0rc2, 1.15.0rc3, 1.15.0, 2.1.0rc0, 2.1.0rc1, 2.1.0rc2, 2.1.0)
ERROR: No matching distribution found for tensorflow-cpu==2.3.0rc2
4

1 回答 1

6

请确保 pip 指向 pip3,因为 tensorflow 需要 python3

pip --version


pip3 install --upgrade tensorflow
于 2020-07-24T12:51:21.823 回答