Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

update python version google colab

#install python 3.9
!sudo apt-get update -y
!sudo apt-get install python3.9

#change alternatives
!sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.7 1
!sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 2

#check python version
!python --version
#3.9.6
Comment

change py version in colab

# Choose one of the given alternatives:
!sudo update-alternatives --config python3

# This one used to work but now NOT(for me)!
# !sudo update-alternatives --config python

# Check the result
!python3 --version

# Attention: Install pip (... needed!)
!sudo apt install python3-pip
Comment

update python version google colab

#install python 3.9
!sudo apt-get update -y
!sudo apt-get install python3.9

#change alternatives
!sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.7 1
!sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 2

#check python version
!python --version
#3.9.6
Comment

change python version in colab

 Change Runtime Type and selecting python3 
Comment

PREVIOUS NEXT
Code Example
Python :: how to handle missing values in dataset 
Python :: python convert list to list of strings 
Python :: how to add reaction by message id in discord.py 
Python :: how to make a comment in python 
Python :: array sort python 
Python :: add horizontal line to plotly scatter 
Python :: python remove file with pattern 
Python :: python string replace variable 
Python :: save imag epillow 
Python :: django redirect 
Python :: pandas dataframe drop rows with -ve in column value 
Python :: Set value of dataframe using condition 
Python :: python create gif 
Python :: proper function pandas 
Python :: converting datatypes 
Python :: pow() Function Function in python 
Python :: how to get a specific field in django 
Python :: add icon to exe file 
Python :: python removing duplicate item 
Python :: decision tree classifier example 
Python :: jupyter notebook cell background color 
Python :: remove item from list 
Python :: plt dashed line 
Python :: python os.remove permissionerror winerror 5 access is denied 
Python :: flatten list 
Python :: tkinter canas can you use other fonts 
Python :: how to create a button using tkinter 
Python :: python list as queue 
Python :: print data type array 
Python :: changing names of column pandas 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =