Mac OSX 安装Tensorflow1.8.0

详细安装方法

  1. 按照 Anaconda 下载网站上的说明下载并安装 Anaconda。下载python3.6版本
  2. 通过调用以下命令创建名为 tensorflow 的 conda 环境:
$ conda create -n tensorflow pip python=2.7 # or python=3.3, etc.
  1. 通过发出以下命令激活 conda 环境:
$ source activate tensorflow
 (targetDirectory)$  # Your prompt should change
  1. 下载TensorFlow离线安装包:
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.8.0-py3-none-any.whl
  1. 发出以下格式的命令以在 conda 环境中安装 TensorFlow:
(targetDirectory)$ pip install --ignore-installed --upgrade tensorflow-1.8.0-py3-none-any.whl
  1. 验证安装,通过发出以下命令激活 conda 环境
$ source activate tensorflow
 (targetDirectory)$  # Your prompt should change
  1. 从 shell 中调用 Python,如下所示:
$ python3
  1. 在 Python 交互式 shell 中输入以下几行简短的程序代码:
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))

如果系统输出以下内容,则说明您可以开始编写 TensorFlow 程序了:

Hello, TensorFlow!
  1. 如果提示一下警告:
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

你可能感兴趣的:(Ubuntu入门)