error in missingno module import in Jupyter Notebook

Viewed 15711

Getting error in missingno module import in Jupyter Notebook . It works fine in IDLE . But showing "No missingno module exist" in Jupyter Notebook . Can anybody tell me how to resolve this ?

2 Answers

Installing missingno through anaconda solved the problem for me

This command helped me: conda install -c conda-forge/label/gcc7 missingno You have to make sure that you run Anaconda prompt as Administrator.

Related