[PYTHON] Remarque sur les préférences de TensFlow

C'est un mémo de la procédure de construction d'environnement de TensFlow

procédure

--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

Remarque sur les préférences de TensFlow
Remarque sur les préférences de PyCharm
Note
Note
Note
Django Note 4
note de pyenv
GroupBy Remarque
argparse note
Django Note 5
Remarque: Python
Note d'Ansible
Note de Python
Django Note 1
note de direnv
Django Note 3
Django Note 2
[Note] RepresenterError