C'est un mémo de la procédure de construction d'environnement de TensFlow
--Installez python 3.5.2 (reportez-vous à ici
brew update && brew upgrade
brew install pyenv
echo 'export PYENV_ROOT="${HOME}/.pyenv"' >> ~/.bash_profile
echo 'export PATH="${PYENV_ROOT}/bin:$PATH"' >> ~/.bash_profile
echo 'eval "$(pyenv init -)"' >> ~/.bash_profile
exec $SHELL -l
pyenv install anaconda3-4.0.0
pyenv global anaconda3-4.0.0
pyenv global anaconda3-4.0.0
pyenv install -l
pyenv install 3.5.2
pyenv global 3.5.2 # 3.5.Utiliser 2
Maintenant, installez python3.5.2.
--TensFlow installation Reportez-vous à ici
$ conda create -n tensorflow python=3.5
$ conda install -c conda-forge tensorflow
Confirmation après l'installation. Après avoir démarré la console, essayez d'exécuter l'exemple TensFlow.
$ python
>>>import tensorflow as tf
>>> hello = tf.constant('Hello, TensorFlow!')
>>> sess = tf.Session()
>>> print(sess.run(hello))
Hello, TensorFlow!
>>> a = tf.constant(10)
>>> b = tf.constant(32)
>>> print(sess.run(a + b))
42
Recommended Posts