$ brew install pyenv
Ajout de ce qui suit.
~/.bash_profile
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
Vérifiez la version de Python qui peut être installée.
$ pyenv install -l
Installez 3.6.0
.
$ xcode-select --install
$ pyenv install 3.6.0
Définissez la version de Python à utiliser sur «3.6.0».
$ pyenv global 3.6.0
Confirmation de version
$ python --version
Python 3.6.0
Puisqu'il est gênant cette fois, virtialenv est omis.
$ pip install tensorflow
$ pip install keras
git clone
le référentiel keras
$ git clone https://github.com/fchollet/keras.git
Aller aux «exemples»
$ cd keras/examples
Essayez d'exécuter mnist_cnn.py
.
$ python mnist_cnn.py
c'est tout.
Recommended Posts