Search code examples
pythonpython-3.xjupyter-notebookatom-editorhydrogen

Jupyter Notebook can't find modules for Python


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!


Solution

  • Try the following:

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

    Make sure that Panda is installed using pip3.