I'm running Ubuntu 16.04 and installed jupyter using pip3 install jupyter
as described on the jupyter.org website.
The install appeared to work without issue. There were no missing zeromq references as reported in some other forum posts.
But I had two issues:
There's no
jupyter
command installed. I launchedjupyter
using:python3 ~/.local/lib/python3.5/site-packages/jupyter.py notebook
The app failed to start after issuing the following message:
jupyter: 'notebook' is not a Jupyter command.
I prefer to keep the install fairly minimal so I'm avoiding going the anaconda route.
Any suggestions would be appreciated.
pip install
with--user
option then you should add~/.local/bin
to your$PATH
– jfs Apr 24 '16 at 21:15pip
issue is still open. Though Ubuntu's version defaults to--user
outside virtualenv since Ubuntu 15.04. See LP #1419695. – jfs Apr 30 '16 at 03:38