Es ist ein Memo des Umgebungskonstruktionsverfahrens von TensFlow
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.Verwenden Sie 2
Installieren Sie nun python3.5.2.
--TensFlow installieren Siehe hier
$ conda create -n tensorflow python=3.5
$ conda install -c conda-forge tensorflow
Bestätigung nach der Installation. Versuchen Sie nach dem Starten der Konsole, das TensFlow-Beispiel auszuführen.
$ 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