如何安装tensorflow==2.3.0

Mic*_*zep 3 pip tensorflow tensorflow2

我想在新的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
Run Code Online (Sandbox Code Playgroud)

小智 6

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

pip --version


pip3 install --upgrade tensorflow
Run Code Online (Sandbox Code Playgroud)