Bereiten Sie eine Umgebung für das Lernen von Deep Learning vor
Nachschlagewerk: O'REILY Deep Learning von Grund auf neu gemacht
Python3-Serie
NumPy
Matplotlib
Da Python 2.7 bereits enthalten ist, installieren Sie 3 Serien separat.
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