2017-06-18 111 views
0

我按照主網站中的說明在anaconda中安裝了張量流。但'導入tensorflow'只適用於anaconda的envs張張流文件夾中的python。 anaconda的python3.6不導入tensorflow。anaconda的tensorflow導入錯誤

回答

0

我也面臨着類似的挑戰 以下方式爲我工作

第1步:安裝最新的蟒蛇

第2步: C:>暢達創建-n tensorflow蟒蛇= 3.5

雖然你的水蟒蟒3.6 3.5

第3步tensorflow工作: C:>激活tensorflow

(tensorflow)C:>#你提示應該改變

步驟4:

4.1:用於CPU

(tensorflow)C命令:> PIP安裝安裝 - 忽略--upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.2.1-cp35-cp35m-win_amd64.whl

4.2:針對GPU命令

(tensorflow)C:> PIP安裝安裝 - 忽略--upgrade https://storage.googleapis.com/tensorflow/windows/gpu/tensorflow_gpu-1.2.1-cp35-cp35m-win_amd64.whl

步驟5(驗證tensorflow的安裝)

(開始新的終端)

$ python 
 
(enter the following command) 
 
>>> import tensorflow as tf 
 
>>> hello = tf.constant('Hello, TensorFlow!') 
 
>>> sess = tf.Session() 
 
>>> print(sess.run(hello)) 
 
the output should be 
 
Hello, TensorFlow!

步驟6: 打開阿納康達導航 從「根上改變應用到Tensorflow 「通道(左上)

步驟7: N ow安裝所需的jupyter或spyder,您希望使用 (安裝後啓動它將工作的筆記本)

0

執行安裝步驟,但將3.5或35替換爲3.6或36.適用於我。

conda create -n tensorflow python=3.6 
activate tensorflow 
pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.2.1-cp36-cp36m-win_amd64.whl 

參考:Installing TensorFlow on Windows