TensorFlow安裝與使用
阿新 • • 發佈:2018-12-14
anaconda安裝tensorflow
- python --version: 檢視當前python版本,此處為3.6
- conda create -n tensorflow python=3.6:新建名為tensorflow的conda環境
- source activate tensorflow: 啟用tensorflow環境
- pip install tensorflow:在tensorflow環境下安裝tensorflow模組的cpu版本(類似於在python環境下安裝numpy模組)(在tensorflow環境下安裝tensorflow模組的gpu版的命令為:pip install tensorflow-gpu)
- 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)