Error in my code ModuleNotFoundError: No module named 'emnist'

Viewed 26

When I run my code in Jupyter Notebook from Anaconda, the following error appeared:

ModuleNotFoundError: No module named 'emnist'

How can I solve it?

1 Answers

In order to run modules in Python, you have to install them. To do that in your case enter the following:

pip install emnist

or

pip3 install emnist

Related