Python的必学技术——Jupyter Notebook
生活随笔
收集整理的這篇文章主要介紹了
Python的必学技术——Jupyter Notebook
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
推薦 Jupyter NoteBook 的原因:整合所有的資源、交互性編程體驗和零成本重現(xiàn)結(jié)果。
Jupyter NoteBook 能夠把軟件代碼、計算輸出、解釋文檔、多媒體資源整合在一起的多功能科學(xué)運(yùn)算平臺。很符合英文里說一圖勝千言(A picture is worth a thousand words)。
安裝前置條件:python3,pip
1. 安裝notebook及使用
# 安裝
pip install notebook# 啟動
jupyter notebook
然后就可以看到安裝成功的界面:
使用代碼、文檔、運(yùn)行結(jié)果都可以在一個中呈現(xiàn);
2. 安裝jupyter-lab及使用
# 安裝
pip install jupyterlab# 啟動
jupyter-lab
使用handcalcs 輸入 Latex公式效果如下圖:
https://github.com/connorferster/handcalcs
可參考:
安裝:https://jupyter.org/install.html
運(yùn)行:https://jupyter.readthedocs.io/en/latest/running.html#running
Jupyter相關(guān)文檔推薦:
- Jupyter 官方
- Google Research 提供的 Colab 環(huán)境,尤其適合機(jī)器學(xué)習(xí)的實(shí)踐應(yīng)用
總結(jié)
以上是生活随笔為你收集整理的Python的必学技术——Jupyter Notebook的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 火狐自定义字体失败 downloadab
- 下一篇: Python的神奇功能——函数装饰器Me