[Python] 在 Mac 上開啟 .ipynb notebook 檔案
最近拿到了一個 .ipynb 檔案,
這是什麼東西呢?
這是 iPython Notebook 的格式,
可以將程式碼、說明文字以網頁的方式呈現,
還能直接執行程式碼,非常適合教學使用~
不過,這 .ipynb 檔案要怎麼開呢?
在 Mac 上,可以用 pip 安裝 ipython 和 notebook:
pip install ipython notebook
之後就可以執行 ipython notebook <檔名>,
就能將 .ipynb 檔案打開啦~
參考資料:How to open a notebook file with iPython notebook
(本頁面已被瀏覽過 2,849 次)