我爱编程

TensorFlow-1-安装

2017-09-16  本文已影响0人  MangoDai

安装

全局采用Python3.5

  1. Anaconda安装

    1. 下载对应版本
    2. 安装
    3. 替换仓库
      conda config --add channels         https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
      conda config --set show_channel_urls yes
      
  2. TensorFlow安装

    C:> conda create -n tensorflow python=3.5
    C:> activate tensorflow
    // 二选一 GPU需要算力3.0以上且安装对应8.0套件,一般来说游戏本才可以。
    C:> pip install --ignore-installed --upgrade tensorflow // CPU 
    C:> pip install --ignore-installed --upgrade tensorflow-gpu // GPU
    
  3. 测试

    >>> import tensorflow as tf
    >>> hello = tf.constant('Hello, TensorFlow!')
    >>> sess = tf.Session()
    >>> print(sess.run(hello))
    
上一篇下一篇

猜你喜欢

热点阅读