Lesen wir die Hauptfamilie.
Installieren Sie pyenv
brew install pyenv
Zu .zshrc hinzugefügt
export PATH="$HOME/.pyenv/bin:$PATH"
if which pyenv > /dev/null; then eval "$(pyenv init -)"; fi
Suchen Sie nach dem Installationsziel
pyenv install --list
Installation
pyenv install anaconda3-2.5.0
Bestätigen Sie, dass es installiert wurde
pyenv versions
Auf global setzen
pyenv global anaconda3-2.5.0
Überprüfen Sie die Python-Version
python --version
Recommended Posts