我按照主网站上的说明在anaconda安装了tensorflow。但是导入张量流'只适用于在anaconda的envs中的tensorflow文件夹中的python。 anaconda的python3.6没有导入tensorflow。
答案 0 :(得分:0)
我也遇到了类似的挑战 以下方式对我有用
第1步:安装最新的anaconda
第2步: C:> conda create -n tensorflow python = 3.5
虽然你的anaconda python是3.6张量流量工作在3.5
第3步: C:>激活tensorflow
(tensorflow)C产品:> #你的提示应该改变
第4步:
4.1:CPU命令
(tensorflow)C产品:> pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.2.1-cp35-cp35m-win_amd64.whl
4.2:GPU命令
(tensorflow)C产品:> pip install --ignore-installed --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: 打开Anaconda Navigator 将应用程序从“Root to Tensorflow”通道(左上角)更改为
第7步: 现在安装你想要使用的所需的jupyter或spyder (安装后启动它会起作用的笔记本电脑)
答案 1 :(得分:0)