安裝
全局采用Python3.5
-
Anaconda安裝
- 下載對應(yīng)版本
- 安裝
- 替換倉庫
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --set show_channel_urls yes
-
TensorFlow安裝
C:> conda create -n tensorflow python=3.5 C:> activate tensorflow // 二選一 GPU需要算力3.0以上且安裝對應(yīng)8.0套件,一般來說游戲本才可以蟆融。 C:> pip install --ignore-installed --upgrade tensorflow // CPU C:> pip install --ignore-installed --upgrade tensorflow-gpu // GPU
-
測試
>>> import tensorflow as tf >>> hello = tf.constant('Hello, TensorFlow!') >>> sess = tf.Session() >>> print(sess.run(hello))