Answers for "how to change python version to use ubuntu"

1

update python ubuntu

sudo apt-get update && sudo apt-get upgrade
sudo apt-get install python3.7
Posted by: Guest on May-18-2020
3

how to change python version on linux

#Check available versions
ls /usr/bin/python*
#Change the used version 3.5 or 3.7 etc
alias python='/usr/bin/python3.x'
#do this other thing
. ~/.bashrc
#Check version 
python --version
Posted by: Guest on August-07-2020

Code answers related to "how to change python version to use ubuntu"

Python Answers by Framework

Browse Popular Code Answers by Language