目錄
- 1.jupyter
- 2.jupyter基礎(chǔ)操作
- 2.1windows更新pip庫(kù)
- 2.2jupyter安裝
- 2.3初次啟動(dòng)jupyter
- 2.4設(shè)置密碼進(jìn)入jupyter
- 3.創(chuàng)建一個(gè)jupyter文本
- 4.jupyter文本的用法
- 4.1保存和下載文本
- 4.2運(yùn)行和切換代碼
- 4.3多個(gè)代碼運(yùn)行
Jupyter Notebook 是一個(gè)在瀏覽器中使用的交互式的筆記本,可以實(shí)現(xiàn)將代碼、文字完美結(jié)合起來(lái),它的受眾群體大多數(shù)是一些從事數(shù)據(jù)科學(xué)領(lǐng)域相關(guān)(機(jī)器學(xué)習(xí)、數(shù)據(jù)分析等)的人員。
1.jupyter
Jupyter Notebook是一個(gè)開(kāi)源的Web應(yīng)用程序,允許用戶創(chuàng)建和共享包含代碼、方程式、可視化和文本的文檔。它的用途包括:數(shù)據(jù)清理和轉(zhuǎn)換、數(shù)值模擬、統(tǒng)計(jì)建模、數(shù)據(jù)可視化、機(jī)器學(xué)習(xí)等等
2.jupyter基礎(chǔ)操作
2.1windows更新pip庫(kù)
python -m pip install --upgrade pip -i https://pypi.douban.com/simple
C:\Users\籃球>python -m pip install --upgrade pip -i https://pypi.douban.com/simple
Looking in indexes: https://pypi.douban.com/simple
Collecting pip
Downloading https://pypi.doubanio.com/packages/ca/31/b88ef447d595963c01060998cb329251648acf4a067721b0452c45527eb8/pip-21.2.4-py3-none-any.whl (1.6 MB)
|████████████████████████████████| 1.6 MB 1.1 MB/s
Installing collected packages: pip
Attempting uninstall: pip
Found existing installation: pip 20.1.1
Uninstalling pip-20.1.1:
Successfully uninstalled pip-20.1.1
Successfully installed pip-21.2.4
2.2jupyter安裝
#安裝jupyter
pip install jupyter
#有錯(cuò)誤提升的話,則需要安裝依賴包,No module named 'x' x顯示什么就安裝什么依賴包
pip install maturin
#安裝插件,提高效率
pip install jupyter_contrib_nbextensions
#更新jupyter
pip install --upgrade jupyter
2.3初次啟動(dòng)jupyter
#按windows鍵+r 輸入:jupyter-notebook
#google瀏覽器 輸入:127.0.0.1:8888 或者 localhost:8888
看到這個(gè)頁(yè)面則成功!
![](/d/20211017/1c898377f97c5831dd90817b3e5db323.gif)
2.4設(shè)置密碼進(jìn)入jupyter
C:\&;CD jupyter
C:\jupyter>
#windows命令創(chuàng)建文件
C:\jupyter>jupyter notebook --generate-config #生成文件
C:\jupyter>jupyter notebook password #設(shè)置密碼
x x x x
#或者查看token輸入登錄
C:\jupyter>jupyter notebook list
#再次運(yùn)行jupyter
E:\&;jupyter notebook
[W 21:12:13.097 NotebookApp] Terminals not available (error was No module named 'winpty.cywinpty')
[I 21:12:13.099 NotebookApp] Serving notebooks from local directory: E:\
[I 21:12:13.099 NotebookApp] Jupyter Notebook 6.4.3 is running at:
[I 21:12:13.102 NotebookApp] http://localhost:8888/
[I 21:12:13.102 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
![](/d/20211017/3ab6a24e3944d9575213dd85bbc8a4b2.gif)
看到此頁(yè)面則成功?。?!
3.創(chuàng)建一個(gè)jupyter文本
![](/d/20211017/1281f4c8bd431921780551a70e7434cf.gif)
![](/d/20211017/54fa3ab4d600a919c74be45ee41850cd.gif)
4.jupyter文本的用法
4.1保存和下載文本
![](/d/20211017/03ba4a056df6f0039468692f05159fe9.gif)
4.2運(yùn)行和切換代碼
![](/d/20211017/f23e8bb118f04a9599e5e880c4bdf0ef.gif)
![](/d/20211017/b6a5ce7df361c6ea22a936f91531767c.gif)
4.3多個(gè)代碼運(yùn)行
![](/d/20211017/17897db446797226fd6dfa39486f8e19.gif)
歡迎留爪,互相探討,勇敢牛牛,不怕困難!
您可能感興趣的文章:- Python安裝Jupyter Notebook配置使用教程詳解
- pycharm中jupyter的使用圖文教程
- Jupyter notebook快速入門(mén)教程(推薦)
- jupyter notebook快速入門(mén)及使用詳解
- python入門(mén)jupyter基礎(chǔ)操作及文本用法