tensorflow 安装

使用 Anaconda 安装

按照如下步骤在 Anaconda 环境中按照 TensorFlow:

  1. 按照 Anaconda 下载网站 中的指导来下载并安装 Anaconda。

  2. 通过以下命令建立一个叫做 tensorflow 的 conda 环境来运行某一版本的 Python:

    $ conda create -n tensorflow pip python=2.7 # or python=3.3, etc.
  3. 使用如下命令来激活 conda 环境:

    $ source activate tensorflow
    (tensorflow)$  # 这时你的前缀应该变成这样 
  4. 运行如下格式的命令来在你的 conda 环境中安装 TensorFlow:

    (tensorflow)$ pip install --ignore-installed --upgrade tfBinaryURL 

    其中 tfBinaryURL 是 TensorFlow Python 包的 URL。例如,如下命令安装了仅支持 CPU 的 Python 3.4 版本下的 TensorFlow:

    (tensorflow)$ pip install --ignore-installed --upgrade \
    https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.8.0-cp34-cp34m-linux_x86_64.whl 

 

验证你的安装

按照如下步骤验证你的 TensorFlow 安装:

 1. 确保你的环境可以运行 TensorFlow (即:若有虚拟环境应激活它)

  1. 执行一个简短的 TensorFlow 程序

准备你的环境

如果你是使用原生 pip,Virtualenv 或者 Anaconda 安装的,那么进行如下步骤:

  1. 开启一个终端。

  2. 如果是使用 Virtualenv 或 Anaconda 安装,激活你的容器。

  3. 如果使用的 TensorFlow 源码安装,跳转至任意路径,除了有 TensorFlow 源码的地方。

如果你是通过 Docker 安装的,开启一个你可以使用 bush 的 Docker 容器,如:

$ docker run -it tensorflow/tensorflow bash

执行一个简短的 TensorFlow 程序

在你的 shell 命令行中开启 Python:

$ python

在 Python 的交互式 shell 命令行中运行如下程序:

# Python
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))

如果系统输出一下数据,那么代表着你已经准备好编写 TensorFlow 程序了:

Hello, TensorFlow!

如果系统输出了一个错误信息,见 常见安装错误.

如果你是机器学习的新手,我们推荐以下内容:

  • 机器学习速成课程

  • Graph Execution 入门

Premade Estimators

你可能感兴趣的:(tensorflow 安装)