[Solved]: ImportError: No module named 'keras'
If you have pip
installed. list the installed Python packages:
$ pip list | grep -i keras
Keras 2.2.4
Keras-Applications 1.0.6
Keras-Preprocessing 1.0.5
If you don’t see Keras, it means that the previous installation failed or is incomplete.
try to uninstall it, and retry installation:
$ pip uninstall keras
$ pip install keras