YosDos
YosDos

Reputation: 451

ImportError: No module named jupyter_core.command when running via SSH

Jupyter notebook work just fine on my computer, but when i run it via ssh from another computer i receive this message:

ImportError: No module named jupyter_core.command 

Im using Ubuntu 18.04.3 LTS for both of them and i have Conda installed

Upvotes: 5

Views: 2929

Answers (2)

Bruce Barnett
Bruce Barnett

Reputation: 948

This worked for me

sudo apt install python3-jupyter-core

Upvotes: 2

YosDos
YosDos

Reputation: 451

Ok then. I just installed Ipython outside of the environment i worked with.:

conda deactivate

and then:

sudo apt install ipython

Upvotes: 1

Related Questions