Tensorflow Error: ModuleNotFoundError: No module named 'tensorflow_core.estimator'

Viewed 8274
2 Answers

Resolved by restarting Jupyter Notebook kernel. Consulted various resources online to install / uninstall packages and items, so difficult to pinpoint was produced the desired result -- but for those encountering this, ensure to restart kernel.

On Windows, in my Anaconda virtual environment running Python 3.7, I have fixed this issue by simply upgrading TensorFlow and Keras to the latest versions.

I did this by running the following PIP command in my Anaconda terminal:

pip install tensorflow --user --upgrade
pip install keras --user --upgrade
Related