简体   繁体   中英

How can I resolve ModuleNotFoundError: No module named 'tensorflow' problem?

Tensorflow is successfully installed on my laptop.

Name: tensorflow
Version: 2.2.0
Summary: TensorFlow is an open source machine learning framework for everyone.
Home-page: https://www.tensorflow.org/
Author: Google Inc.
Author-email: packages@tensorflow.org
License: Apache 2.0
Location: c:\users\my name\anaconda3\lib\site-packages
Requires: protobuf, astunparse, h5py, opt-einsum, wrapt, grpcio, termcolor, gast, tensorflow-estimator, scipy, six, tensorboard, wheel, google-pasta, numpy, keras-preprocessing, absl-py
Required-by:

The environment is Windows 8.1, python 3.7.1, pip 20.1.1.

When I run this test file

import tensorflow as tf
hello = tf.constant("hello TensorFlow!")
sess=tf.Session()
print(sess.run(hello))

, I get the following error message:

ModuleNotFoundError: No module named 'tensorflow'.

How can I resolve this problem?

Just install it with pip:

pip install tensorflow

Check this page: https://pypi.org/project/tensorflow/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM