jupyter使用小結

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

配置

  • ipython locate : 查看配置
  • jupyter notebook --generate-config : 若是沒有~/.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

相關文章
相關標籤/搜索