Jupyter Notebook can't find modules for python 3.6

Harris2018 picture Harris2018 · Jun 18, 2018 · Viewed 37.6k times · Source

Not sure what happened but whenever I use ipython, hydrogen (atom) or jupyter notebook can't find any of the installed modules. I know I have pandas installed but the notebook says its not found.

I should add that when I run the script normally (python script.py) it does import without any errors.

Suggestions?

Thanks!

Answer

amb1s1 picture amb1s1 · Jun 18, 2018

Try the following:

pip3 install ipykernel --upgrade
python3 -m ipykernel install --user

Make sure that Panda is installed using pip3.