I have some imports in my jupyter notebook and among them is tensorflow:
ImportError Traceback (most recent call last)
Probably there is a problem with the TensorFlow in your environment. In my case, After installing some libs, my TensorFlow stopped working.
So I installed TensorFlow again using pip. like so:
just run
pip install tensorflow
then I re-imported it into my jupyter notebook as :
import tensorflow as ft
In case you want to install jupyter and base libs try this:
pip install jupyter tensorflow keras numpy scipy ipython pandas matplotlib sympy nose