If you encounter the following ‘module not found’ error when coding in Python, it means that the interpreter was not able to find the Tensorflow module:
Traceback (most recent call last):
File "/path/filename.py", line 1, in
import tensorflow as tf
ModuleNotFoundError: No module named 'tensorflow'
This issue can be resolved by installing Tensorflow using the ‘pip’ package manager:
pip install tensorflow