Préparer un environnement d'apprentissage en profondeur
Ouvrage de référence: O'REILY Deep Learning fait de zéro
Série Python3
NumPy
Matplotlib
Puisque Python 2.7 est déjà inclus, installez la série 3 séparément.
https://brew.sh/index_ja.htmlのサイトでインストールコマンドが記載されているのでターミナルから実行する
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install pyenv
pyenv -version
cd ~
ls -al
touch .bash_profile
vi ~.bash_profile
export PATH="$HOME/.pyenv/shims:$PATH"
source ~/.bash_profile
which python
pyenv install -l
pyenv install 3.5.0
xcode-select --install
pyenv global 3.5.0
python -v
pip install numpy
pip install matplotlib
Recommended Posts