安装张量流,但pycharm忽略它

eco*_*con 1 python pycharm tensorflow

我安装了tensorflow(来自Joshua的答案): 如何在anaconda python上安装tensorflow 3.6 如果我在cmd中测试它:

D:\>python
Python 3.6.1 |Anaconda 4.4.0 (64-bit)| (default, May 11 2017, 13:25:24) [MSC 
v.1
900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.  
>>> import tensorflow
>>> hello = tf.constant('Hello, TensorFlow!')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
    NameError: name 'tf' is not defined
>>> import tensorflow as tf
>>> hello = tf.constant('Hello, TensorFlow!')
>>> sess = tf.Session()
2017-07-14 16:21:53.235367: W d:\build\tensorflow\tensorflow-
r1.2\tensorflow\cor
e\platform\cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled 
to us
e SSE instructions, but these are available on your machine and could speed 
up C
PU computations.
2017-07-14 16:21:53.508199: W d:\build\tensorflow\tensorflow-
r1.2\tensorflow\cor
e\platform\cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled 
to us
e SSE2 instructions, but these are available on your machine and could speed 
up
CPU computations.
2017-07-14 16:21:53.511766: W d:\build\tensorflow\tensorflow-
r1.2\tensorflow\cor
e\platform\cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled 
to us
e SSE3 instructions, but these are available on your machine and could speed 
up
CPU computations.
2017-07-14 16:21:53.515734: W d:\build\tensorflow\tensorflow-
r1.2\tensorflow\cor
e\platform\cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled 
to us
e SSE4.1 instructions, but these are available on your machine and could 
speed u
p CPU computations.
2017-07-14 16:21:53.517818: W d:\build\tensorflow\tensorflow-
r1.2\tensorflow\cor
e\platform\cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled 
to us
e SSE4.2 instructions, but these are available on your machine and could 
speed u
p CPU computations.
>>> print(sess.run(hello))
b'Hello, TensorFlow!'
Run Code Online (Sandbox Code Playgroud)

所以这应该没问题......但如果我尝试在pycharm中重复这个测试(即使我重新启动了pycharm):ModuleNotFoundError:没有名为'tensorflow'的模块

有什么想法吗?

use*_*241 8

只需从项目设置中安装tensorflow.你不需要anaconda.

在此输入图像描述