在Google Colab上安装TensorFlow 2.6.0

6kkfgxo0  于 2023-06-24  发布在  Go
关注(0)|答案(1)|浏览(136)

我正在尝试在google colab上运行这个脚本:

!pip3 install tensorflow==2.6.0

我得到这个错误:

ERROR: Could not find a version that satisfies the requirement tensorflow==2.6.0 (from versions: 2.8.0rc0, 2.8.0rc1, 2.8.0, 2.8.1, 2.8.2, 2.8.3, 2.8.4, 2.9.0rc0, 2.9.0rc1, 2.9.0rc2, 2.9.0, 2.9.1, 2.9.2, 2.9.3, 2.10.0rc0, 2.10.0rc1, 2.10.0rc2, 2.10.0rc3, 2.10.0, 2.10.1, 2.11.0rc0, 2.11.0rc1, 2.11.0rc2, 2.11.0, 2.11.1, 2.12.0rc0, 2.12.0rc1, 2.12.0, 2.13.0rc0, 2.13.0rc1)

   ERROR: No matching distribution found for tensorflow==2.6.0

我是一个biginner谷歌colab,任何想法如何运行脚本和配置的TPU
我试图描述我的问题,并给予代码示例,一切正常

whlutmcx

whlutmcx1#

试试这个:

pip3 install --upgrade tensorflow

相关问题