Skip to content Skip to sidebar Skip to footer

Python 3.5 In Google Colab

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 ?

Solution 1:

This worked for me.

!apt-get install python3.5

Solution 2:

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

Post a Comment for "Python 3.5 In Google Colab"