Es wird davon ausgegangen, dass es auf MacOSX basiert.
Halten Sie die Homebrew-Umgebung vorerst auf dem neuesten Stand.
$ brew update
$ brew upgrade
$ brew install pyenv
Wenn Sie es noch nicht installiert haben, installieren Sie die XCode-Entwicklertools.
$ xcode-select --install
Fügen Sie Folgendes zu ~ / .bash_profile
hinzu.
~/.bash_profile
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
Überprüfen Sie die Version von Python, die installiert werden kann.
$ pyenv install --list
Hier installieren Sie 3.4.3
.
$ pyenv install 3.4.3
Wechseln Sie die von Ihnen verwendete Python-Version zu 3.4.3, die Sie gerade installiert haben.
$ pyenv global 3.4.3
$ pyenv rehash
$ pip install numpy
$ pip install scipy
$ pip install matplotlib
$ pip install scikit-learn
das ist alles.
Recommended Posts