“Modifier la version Python par défaut Mac” Réponses codées

Modifier la version Python par défaut Mac

#install or update brew
$ brew install pyenv
#install
$ pyenv install 3.7.3
#make default
$ pyenv global 3.7.3
# and verify
$ pyenv version
3.7.3 (set by /Users/mbbroberg/.pyenv/version)
$ echo -e 'if command -v pyenv 1>/dev/null 2>&1; then\n  eval "$(pyenv init -)"\nfi' >> ~/.bash_profile
#reset the current shell
$ exec $0 
$ which python
#/Users/mbbroberg/.pyenv/shims/python
$ python -V
$ pip -V
#pip 19.0.3 from /Users/mbbroberg/.pyenv/versions/3.7.3/lib/python3.7/site-packages/pip (python 3.7)
Homeless Hoopoe

Comment définir la version Python par défaut dans macOS

ln -s -f /usr/local/bin/python3.7 /usr/local/bin/python
Light Lyrebird

Définir Python3 comme Mac par défaut

# it is said not to do but I used it anyway, because of the conveniency
$ echo "alias python=/usr/local/bin/python3.7" >> ~/.zshrc 
Blue Badger

mac pourquoi python est-il installé dans USR et application

$ pyenv global 3.7.3
# and verify it worked 
$ pyenv version
3.7.3 (set by /Users/mbbroberg/.pyenv/version)
Energetic Eland

Définir Python 3 comme Mac par défaut

[ -e ~/.profile ] && . ~/.profile
Evil Prodigy

Réponses similaires à “Modifier la version Python par défaut Mac”

Questions similaires à “Modifier la version Python par défaut Mac”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code