Reputation: 111
Running on MacOS, Catalina.
Other Details:
!pip install --no-deps keras==2.2.4
!pip install --no-deps tensorflow==1.15.3
Anyone encounter this error / know how to resolve?
Upvotes: 2
Views: 8879
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
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