利用Anaconda搭建TensorFlow環境並在Jupyter Notebook使用
阿新 • • 發佈:2019-01-07
開啟Anaconda Prompt
建立一個tensorflow 虛擬環境:
conda create -n tensorflow python=3.6
啟用tensorflow虛擬環境
activate tensorflow
查詢當前可用的tensorflow包
anaconda search -t conda tensorflow
根據提示,檢視一個包的詳情資訊
anaconda show anaconda/tensorflow
根據提示,copy命令安裝tensorflow
檢視環境,確認安裝是否成功
conda info –envs
也可以測試一下
python
import tensorflow as tf
hello = tf.constant(‘hello,Tensorflow!’)
session = tf.Session()
print(session.run(hello))
至此,完成了tensorTensorFlow的安裝,但是要在jupyter notebook中用的話還需要下面的操作
jupyter中使用TensorFlow
在啟用TensorFlow之後安裝ipython和jupyter
(tensorflow)D:>conda install ipython
···
(tensorflow)D:>conda install jupyter
···
安裝python kernel for Tensroflow
(tensorflow)D:>ipython kernelspec install-self –user #不要複製這個命令,user前面是兩個-,這裡顯示不出來
看到類似如下結果
Installed kernelspec python3 in C:\Users\XXX\Jupyter\kernels\python3
開啟Jupyter notebook
試試 import tensorflow as tf