self_guided_arch
self_guided_arch

Reputation: 111

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

Running on MacOS, Catalina.

Other Details:

Anyone encounter this error / know how to resolve?

Upvotes: 2

Views: 8879

Answers (2)

Yannick Pezeu
Yannick Pezeu

Reputation: 800

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

Upvotes: 0

self_guided_arch
self_guided_arch

Reputation: 111

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.

Upvotes: 1

Related Questions