简体   繁体   中英

trying to install Jupyter notebook

I am new to Linux and python. I am trying to install Jupyter notebook but getting the following error:

在此处输入图片说明 在此处输入图片说明

Please help me resolve this? Thanks in advance

Brother use sudo with this command like:

sudo pip install numpy

and you mentioned that you are trying to install Jupiter NoteBook but this is for numpy. And if you want to install Notebook got for this URL: https://www.digitalocean.com/community/tutorials/how-to-set-up-a-jupyter-notebook-to-run-ipython-on-ubuntu-16-04

According to error, you don`t have permissions, so Use:

sudo pip install numpy

But here is way to install jupyter:

sudo apt-get -y install ipython ipython-notebook

sudo -H pip install jupyter

Than run the jupyter :

jupyter notebook

For further info refer: https://www.digitalocean.com/community/tutorials/how-to-set-up-a-jupyter-notebook-to-run-ipython-on-ubuntu-16-04

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM