Je suis sous MacOS Mojave (10.14.6) et je veux installer python 3.7.
Actuellement, j'ai python 3.6 installé :
$ python -V
Python 3.6.9
Il semble y avoir python 3.7 disponible :
$ brew search python
==> Formules
app-engine-python boost-python3 ipython python-markdown python@3.7 reorder-python-imports
boost-python gst-python micropython python-yq python@3.8 wxpython
==> Casks
awips-python kk7ds-python-runtime mysql-connector-python
Si vous vouliez dire "python" spécifiquement :
Il a été migré de homebrew/cask vers homebrew/core.
Donc j'ai essayé d'installer python 3.7 comme suit
brew install python@3.7
avec beaucoup de sortie. J'ai également exécuté la ligne suggérée pour créer un lien symbolique vers python 3.7 :
echo 'export PATH="/usr/local/opt/python@3.7/bin:$PATH"' >> /Users/me/.bash_profile
J'ai sourcé le fichier .bash_profile
, mais python reste en version 3.6 :
$ python -V
Python 3.6.9
J'ai également exécuté la commande suivante avec une erreur :
$ brew switch python 3.7
Error: python does not have a version "3.7" in the Cellar.
python's installed versions: 3.7.6_1
et redémarré l'ordinateur, mais sans succès.
Alors comment installer python 3.7 comme installation standard de python sur un mac ? (Ça pourrait être aussi python3.8, peu importe).