Colab不允许降级TensorFlow,并表示只有版本2可用。下面是代码和输出:
!pip install tensorflow-gpu==1.15.2
import tensorflow as tf
print(tf.__version__)
输出:
Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/
ERROR: Could not find a version that satisfies the requirement tensorflow-gpu==1.15.2 (from versions: 2.2.0, 2.2.1, 2.2.2, 2.2.3, 2.3.0, 2.3.1, 2.3.2, 2.3.3, 2.3.4, 2.4.0, 2.4.1, 2.4.2, 2.4.3, 2.4.4, 2.5.0, 2.5.1, 2.5.2, 2.5.3, 2.6.0, 2.6.1, 2.6.2, 2.6.3, 2.6.4, 2.6.5, 2.7.0rc0, 2.7.0rc1, 2.7.0, 2.7.1, 2.7.2, 2.7.3, 2.7.4, 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)
ERROR: No matching distribution found for tensorflow-gpu==1.15.2
2.9.2
我通过在Colab中创建一些新项目来尝试此代码,但我没有得到新的结果
要降级google colab
中的tensorflow
,必须降级python版本,因为python3.8
与tensorflow1.x
不兼容。因此,将python版本降级到python3.7
并安装tensorflow1.x
。
1。首先,安装python==3.7
版本。
!sudo apt-get update -y
!sudo apt-get install python3.7
#change alternatives
!sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.8 1
!sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.7 2
#check python version
!python --version
- 以上代码将安装
python3.7
版本,但它没有映射到colab内核,所以我们必须映射新安装的python。
# install pip for python==3.7
!sudo apt-get install python3.7-distutils
!wget https://bootstrap.pypa.io/get-pip.py
!python get-pip.py
# install colab dependencies
!python -m pip install ipython ipython_genutils ipykernel jupyter_console prompt_toolkit httplib2 astor
# link to the old google package
!ln -s /usr/local/lib/python3.8/dist-packages/google
/usr/local/lib/python3.7/dist-packages/google
让我们再次检查python的版本,它将是python==3.7.16
:
!python --version
- 现在,是时候安装tensorflow 1.x了。
!pip install tensorflow==1.x
我希望这将有助于解决你的问题。谢谢你!