- 按照 Anaconda 下载网站上的说明下载并安装 Anaconda。下载python3.6版本
- 通过调用以下命令创建名为 tensorflow 的 conda 环境:
$ conda create -n tensorflow pip python=2.7 # or python=3.3, etc.
- 通过发出以下命令激活 conda 环境:
$ source activate tensorflow
(targetDirectory)$ # Your prompt should change
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.8.0-py3-none-any.whl
- 发出以下格式的命令以在 conda 环境中安装 TensorFlow:
(targetDirectory)$ pip install --ignore-installed --upgrade tensorflow-1.8.0-py3-none-any.whl
- 验证安装,通过发出以下命令激活 conda 环境
$ source activate tensorflow
(targetDirectory)$ # Your prompt should change
- 从 shell 中调用 Python,如下所示:
$ python3
- 在 Python 交互式 shell 中输入以下几行简短的程序代码:
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
如果系统输出以下内容,则说明您可以开始编写 TensorFlow 程序了:
Hello, TensorFlow!
- 如果提示一下警告:
Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
则,在程序开端,输入以以下内容即可:
import os
os.environ["TF_CPP_MIN_LOG_LEVEL"]='2' # 只显示 warning 和 Error
10。 退出环境
#退出
source deactivate