1. 程式人生 > >TensorFlow安裝與使用

TensorFlow安裝與使用

anaconda安裝tensorflow

  1. python --version: 檢視當前python版本,此處為3.6
  2. conda create -n tensorflow python=3.6:新建名為tensorflow的conda環境
  3. source activate tensorflow: 啟用tensorflow環境
  4. pip install tensorflow:在tensorflow環境下安裝tensorflow模組的cpu版本(類似於在python環境下安裝numpy模組)(在tensorflow環境下安裝tensorflow模組的gpu版的命令為:pip install tensorflow-gpu)
  5. tensorflow的版本更新頻繁,如果需要更新,命令:pip install tensorflow --upgrade

在這裡插入圖片描述
在這裡插入圖片描述

檢視tensorflow安裝的版本

在tensorflow環境下,進入python,匯入tensorflow包,檢視版本:tf.__version__
在這裡插入圖片描述

執行tensorflow小例子

在anaconda的tensor flow環境下進入python:

import tensorflow as tf
tf.enable_eager_execution()
A = tf.constant([1,2])
B = tf.constant([3,4])
C = tf.add(A, B)
print(C)

在這裡插入圖片描述

tensorflow中文教材文件