When I run my code in Jupyter Notebook from Anaconda, the following error appeared:
ModuleNotFoundError: No module named 'emnist'
How can I solve it?
When I run my code in Jupyter Notebook from Anaconda, the following error appeared:
ModuleNotFoundError: No module named 'emnist'
How can I solve it?
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