试图安装Jupyter笔记本

时间:2017-08-22 10:23:04

标签: python linux jupyter

我是Linux和python的新手。我正在尝试安装Jupyter笔记本,但收到以下错误:

enter image description here enter image description here

请帮我解决这个问题? 提前致谢

2 个答案:

答案 0 :(得分:1)

兄弟用这个命令使用sudo 像:

sudo pip install numpy

并且您提到您正在尝试安装Jupiter NoteBook,但这是为了numpy。 如果你想为这个URL安装Notebook: https://www.digitalocean.com/community/tutorials/how-to-set-up-a-jupyter-notebook-to-run-ipython-on-ubuntu-16-04

答案 1 :(得分:1)

根据错误,你没有权限, 所以使用:

sudo pip install numpy

但是这里是安装jupyter的方法:

sudo apt-get -y install ipython ipython-notebook

sudo -H pip install jupyter

比跑jupyter:

jupyter笔记本

有关详细信息,请参阅: https://www.digitalocean.com/community/tutorials/how-to-set-up-a-jupyter-notebook-to-run-ipython-on-ubuntu-16-04