问题
I'm runing a python code for deep learning in google colab. Python 3.5 is required for that code. How can I install Python 3.5 version in google colab ?
回答1:
If you do !python3 --version
you can see colab current uses Python 3.6.7 which is "python version of 3.5 or above"
alternatively you can use local runtime, this will allow you to use different versions of python
回答2:
This worked for me.
!apt-get install python3.5
来源:https://stackoverflow.com/questions/54994129/python-3-5-in-google-colab