johnhenry
johnhenry

Reputation: 1333

Difficulties in installing Jupyter notebook

I am trying to install the Jupyter Notebook. I followed the instructions on the Jupyter website, namely those passing through pip:

pip install jupyter

But halfway through the process I get the following error:

Storing debug log for failure in /home/user/.pip/pip.log

Can someone help?

Python version:2.7.6

OS: Ubuntu 14.04.3 LTS

Upvotes: 1

Views: 493

Answers (1)

johnhenry
johnhenry

Reputation: 1333

It works by just doing it as root:

sudo pip install jupyter

Upvotes: 1

Related Questions