```
wget https://repo.anaconda.com/archive/Anaconda3-5.2.0-Linux-x86_64.sh
sh xxx.sh
```
```
jupyter notebook --generate-config
python3
from notebook.auth import passwd
passwd()
# 复制sha1........
vi ~/.jupyter/jupyter_notebook_config.py
c.NotebookApp.ip = '*'
c.NotebookApp.password = u' sha1:-----' #这里就是上面的字符串
c.NotebookApp.port = 8866
```