4

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 ?

star123
  • 123
  • 1
  • 2
  • 8

2 Answers2

3

This worked for me.

!apt-get install python3.5
0

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

0101
  • 966
  • 1
  • 11
  • 20