Prepare an environment for learning deep learning
Reference book: O'REILY Deep Learning made from scratch
Python3 series
NumPy
Matplotlib
Since Python 2.7 is already installed, install 3 series separately.
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