Remarques sur l'installation de Python sur votre Mac
#Installez pyenv
brew install pyenv
#Éviter les erreurs zlib
xcode-select --install
#Vérifiez la version Python qui peut être installée
pyenv install -l
#installation de la série python3
pyenv install 3.5.2
pyenv rehash
pyenv global 3.5.2
#Paramètre PATH
echo 'eval "$(pyenv init -)"' >> ~/.bash_profile
source ~/.bash_profile
Recommended Posts