“how to update python version in linux” Code Answer’s
1
1
sudo apt-get update && sudo apt-get upgrade2
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 versions2
ls /usr/bin/python*3
#Change the used version 3.5 or 3.7 etc4
alias python='/usr/bin/python3.x'5
#do this other thing6
. ~/.bashrc7
#Check version 8
python --version

إرسال تعليق