jupyter(以前的ipython notebook
)於個人最大意義在於,讓學習進程和探索進程變得可累積,正如它的原先名字中的notebook
所暗示的那樣,做爲學習的記錄者,方便你隨時撿起學習的進度,增量式地前進html
Ubuntu : pip install jupyterpython
若是在windows下直接裝anaconda吧!不想折騰的你在任何平臺下均可以裝anacondgit
jupyter notebook jupyter notebook --no-browser jupyter notebook --port 9999 jupyter notebook --help jupyter notebook --ip=0.0.0.0 #外部訪問 #經常使用:jupyter notebook --no-browser --port 5000 --ip=0.0.0.0
~/.jupyter/jupyter_notebook_config.py
,則執行這條命令,以後在此作配置vim ~/.jupyter/jupyter_notebook_config.pygithub
# The directory to use for notebooks.這決定了jupyter啓動目錄 c.NotebookApp.notebook_dir = u'/path/to/your/notebooks'
pip install -i http://mirrors.aliyun.com/pypi/simple jupyter # pip 安裝有時候很慢,使用國內阿里雲。
或者建個文件 ~/.pip/pip.conf, 內容以下:vim
[global]
timeout = 1000
index-url = http://mirrors.aliyun.com/pypi/simple
[install]
trusted-host = mirrors.aliyun.com/pypiwindows