“how to update python version in linux” Code Answer’s
1
1
sudo apt-get update && sudo apt-get upgrade
2
sudo apt-get install python3.7
how to change python version on linux
python by Glamorous Gnat
on Aug 07 2020 Comment
3
1
#Check available versions
2
ls /usr/bin/python*
3
#Change the used version 3.5 or 3.7 etc
4
alias python='/usr/bin/python3.x'
5
#do this other thing
6
. ~/.bashrc
7
#Check version
8
python --version
Post a Comment