“Ändern Sie die Python -Version Ubuntu” Code-Antworten

Ändern der Standardpython -Version Ubuntu

sudo update-alternatives  --set python /usr/bin/python3.6
Ugly Unicorn

So ändern Sie die Python -Version unter 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
Glamorous Gnat

Stellen Sie Python 3 als Standard Ubuntu ein

sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.4 1
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.6 2
Sjk-Lacoste

Ändern Sie die Python -Version Ubuntu

[sudo] update-alternatives --install /usr/bin/python python /usr/bin/python3 10
Outrageous Oyster

Stellen Sie Python 3 als Standard Ubuntu ein

sudo update-alternatives --config python
Sjk-Lacoste

Ähnliche Antworten wie “Ändern Sie die Python -Version Ubuntu”

Fragen ähnlich wie “Ändern Sie die Python -Version Ubuntu”

Weitere verwandte Antworten zu “Ändern Sie die Python -Version Ubuntu” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen