Estoy ejecutando MacOS Mojave (10.14.6) y quiero instalar Python 3.7.
Actualmente tengo instalado Python 3.6:
$ python -V
Python 3.6.9
Parece que hay Python 3.7 disponible:
$ brew search python
==> Formulae
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
If you meant "python" specifically:
It was migrated from homebrew/cask to homebrew/core.
Así que intenté instalar Python 3.7 de la siguiente manera
brew install python@3.7
con mucha salida. También ejecuté la línea sugerida para tener Python 3.7 symlinked:
echo 'export PATH="/usr/local/opt/python@3.7/bin:$PATH"' >> /Users/me/.bash_profile
He obtenido el archivo .bash_profile
pero aún así Python es sólo 3,6:
$ python -V
Python 3.6.9
También ejecuté el siguiente comando con un error:
$ 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
y reinicié el ordenador, pero sin éxito.
Entonces, ¿cómo instalar Python 3.7 como la instalación estándar de Python en un mac? (Podría ser también python3.8 por todos los medios).