In fact, I tried to import libraries:

import numpy as np import matplotlib.pyplot as plt %matplotlib inline from collections import Counter from keras.datasets import cifar10 

Displays error: ModuleNotFoundError: No module named 'keras'

ps both in pip'e and in jupyter itself I installed both keras.datasets and tensorflow

  • Have you installed keras.datasets without installing keras ? - MaxU 5:46 pm
  • Keras himself also installed - jetsame pm
  • one
    it seems keras installed crookedly - try to reinstall - MaxU

1 answer 1

Register in the console

pip install keras

  • Lol, my jupyter did not detect that I installed both keras and tf. Thanks - jetsame