--Homebrew Installation --pyenv Installation
terminal
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Vorerst soll es bereits aktuell sein.
terminal
$ brew install pyenv
$ echo 'eval "$(pyenv init -)"' >> ~/.zshrc
$ exec $SHELL -l
terminal
$ pyenv install anaconda3-2019.10
$ pyenv global anaconda3-2019.10
Es scheint, dass "pyenv global" sicherstellt, dass alle Verzeichnisse die entsprechende Python-Version ausführen. Wenn Sie die entsprechende Version nur in einem bestimmten Verzeichnis verwenden möchten, sollten Sie anscheinend "pyenv local anaconda3-2019.10" ausführen.
terminal
$ python
Python 3.7.4 (default, Aug 13 2019, 15:17:50)
[Clang 4.0.1 (tags/RELEASE_401/final)] :: Anaconda, Inc. on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>
Wenn Sie "Python" eingeben und das Obige angezeigt wird, ist die Installation erfolgreich. (Für v.3 Serie) Beenden Sie die interaktive Shell von Python, indem Sie Strg + D drücken (oder quit () eingeben).
Das stimmt, aber das funktioniert nicht.
terminal
$ pyenv install anaconda3-5.3.1
$ pyenv global anaconda3-5.3.1
$ python 3
terminal
Python 3.6.1 (v3.6.1:69c0db5050, Mar 21 2017, 01:21:04)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
Es gibt also keine Anzeichen von Anakonda
terminal
$ echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bash_profile
$ echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bash_profile
$ echo 'eval "$(pyenv init -)"' >> ~/.bash_profile
$ source ~/.bash_profile
$ pyenv rehash
$ python3
Python 3.7.0 (default, Jun 28 2018, 07:39:16)
[Clang 4.0.1 (tags/RELEASE_401/final)] :: Anaconda, Inc. on darwin
Type "help", "copyright", "credits" or "license" for more information.
Oh. Zeichen von Anaconda.
terminal
$ jupyter notebook
Es begann mit!
Ich dachte, es wäre zsh von macOS Catalina, Der Update-Benutzer ist bash, Sie sollten es in zsh ändern.
MacOS 10.15 Catalina setzt die Login-Shell standardmäßig von "bash" auf "zsh".
Nun, ich muss die Shell auf zsh ändern. In diesem Fall bewegen sich Anaconda und Pyenv nicht. Ich frage mich, ob ... Viel Glück.
[Jupyter Notebook] Erfahren Sie, wie Sie es effektiv einsetzen können [Python / Maschinelles Lernen]
Das Wesen der Umgebungskonstruktion verstehen (Konzepte wie PATH) [Python]
[Hinweis von der Installation von Homebrew bis zum Erstellen einer Anaconda-Umgebung für Python mit pyenv] (https://qiita.com/aical/items/2d066801a7464a676994)
[Keras / TensorFlow] Aufbau der Keras (Tensorflow) -Umgebung
Recommended Posts