Since Feb.7th,2017
配置 jupyter
jupyter notebook --generate-config
會在用戶目錄下生成一個配置目錄凑懂,一般路徑在 /home/xxx/.jupyter螺句,該目錄下會有一個配置文件 jupyter_notebook_config.py
調出一個窗口展示圖表虽惭,可供交互橡类。
%matplotlib qt4
調出(隱藏)代碼塊的輸出
Esc + o
調整寬度(幾乎占滿屏幕)
在 ~/.jupyter/custom/custom.css 最后(script 之前)加上以下代碼:
/* Make the notebook cells take almost all available width */
.container {
width: 99% !important;
}
/* keep compatible with the extension TOC2 sidebar*/
#notebook-container {
width: calc(100% - 250px) !important;
margin-right: 0 !important;
margin-left: auto !important;
}
/* Prevent the edit cell highlight box from getting clipped;
* important so that it also works when cell is in edit mode*/
div.cell.selected {
border-left-width: 1px !important;
}
其中/* keep compatible with the extension TOC2 sidebar*/
一段是為了在啟用 Table of Contents 插件的側邊欄情況下保持兼容蛇尚。87% 是 1080P 下合適的值,可能需要根據(jù)工作屏幕進行調整顾画。
更換主題
https://github.com/dunovank/jupyter-themes
把 ipynb 文件 轉化為 py 文件
ipython nbconvert test.ipynb --to python
需要注意一些語句比如%matplotlib inline
會有問題取劫,因此可能需要再修改一下才能直接調用。
安裝多個 kernel
假設之前的jupyter安裝在python2.x環(huán)境中
輸入pip3 install ipykernel
然后輸入python3 -m ipykernel install --user
如果之前jupyter安裝在python3.x環(huán)境中
輸入pip2 install ipykernel
然后輸入python2 -m ipykernel install --user
如果現(xiàn)在想將virtualenv安裝的虛擬環(huán)境添加至jupyter中
使用activate
命令激活虛擬環(huán)境
輸入pip install ipykernel
然后輸入python -m ipykernel install --user
http://www.tk4479.net/foxbuster/article/details/69945341
jupyter_contrib_nbextensions
啟用的插件
- Codefolding
- Collapsible Headings
- contrib_nbextensions_help_item
- ExecuteTime
- Nbextensions dashboard tab
- Nbextensions edit menu item
- Scratchpad
- Table of Contents (2)
- Notify
Table of Contents (2)
dark 顏色配置:
- Hover color in toc: #daa520
- Color of highlight mark on scrolling: #41975e
- Color of sections with selected elements: #ffd700
- Color of sections with running cells: #ff0000
- Color of wrapper window background: #293340
- Color of sidebar border: #1a2028
- Color of navigate text: #6f7889
- Color of navigate numbe: #898f99
nbextensions configurator
根據(jù) github 上的 installation研侣,這是在安裝 nbextension 時自動安裝的依賴項谱邪,因此會自動啟用,即在 home 頁面的頂欄找到 Nbextensions 的選項庶诡,和 Files惦银, Running,Clusters 等并列。但如果在集群上用高權限的用戶安裝扯俱,則使用的用戶可能只能正常使用插件但找不到這個 configurator书蚪。因此需要以該用戶身份運行jupyter nbextensions_configurator enable --user
。