Welcome to the big Data and AI technical articles released by the public number: Qing Research Academy, where you can learn the night white (author's pen name) carefully organized notes, let us make a little progress every day, so that excellent become a habit!
1. Install Jupyter notebook using PIP:
Pip Install Jupyter Notebook
2. Create Jupyter Default profile:
Jupyter Notebook--generate-config
3, enter the Ipython, enter the dialog box:
Ipython
4, import the password module, set the password, and finally generate SHA1 encryption key, save the key, such as ' sha1:xxxxxx ':
from notebook.auth
import
passwd
passwd
()
5, modify the configuration file, set the key: CD ~vim. Jupyter/jupyter_notebook_config.py6, add at the end of the file:
c.NotebookApp.password = u
‘sha1:XXXXXX‘
7. Run Jupyter notebook:jupyter notebook--ip=0.0.0.0--no-browser--allow-root
ubuntu14.04 Installing Jupyter Notebook