jupyter notebook各種操作
配置jupyter notebook伺服器
- 建立jupyter_notebook_config.py 檔案
jupyter notebook --generate-config
- 生成登入密碼
[root@162 ~]# ipython
Python 3.6.8 (default, Aug 7 2019, 17:28:10)
Type 'copyright', 'credits' or 'license' for more information
IPython 7.11.1 -- An enhanced Interactive Python. Type '?' for help.
In [1]: from notebook.auth import passwd
In [2]: passwd()
Enter password:
Verify password:
Out[2]: 'sha1:b123c6b8848f:4bd35144678df876ab789aebceeee5d876ba204a'
In [3]:
- 修改檔案內容
vim /home/USERNAME/.jupyter/jupyter_notebook_config.py
- /keyworld 查詢關鍵字,i修改,esc儲存,:wq儲存退出
# 去掉每個條目前的註釋 '#'
c.NotebookApp.ip = '*' # 設定Jupyter監聽的ip地址,修改為*表示監聽所有ip地址
c.NotebookApp.password = u'sha1:b123c6b8848f:4bd35144678df876ab789aebceeee5d876ba204a' # 將該內容替換為上一步設定密碼時生成的sha1值
c.NotebookApp.open_browser = False # 禁止啟動時自動開啟瀏覽器(本來在桌面平臺上安裝使用時可以開啟,在伺服器上不需要此設定,因此設定為False)
c.NotebookApp.port = 1024 # 指定訪問的埠,按照自己喜好設定,預設是8888,注意不要和已用埠衝突
c.NotebookApp.notebook_dir = '/Your/Directory' # 設定執行時的目錄,因為以root身份執行時預設會在/root目錄下,因此最好修改成自己喜歡的目錄,例如'/home/jupyter'
- 執行
- 伺服器執行jupyternotebook
- 記錄伺服器生成的本地ip(在同一區域網下),或者伺服器真實ip:用來連線
- 新增核心
1 切換到要新增的虛擬環境,確認是否安裝 ipykernel
python -m ipykernel --version
如果沒有安裝,則安裝
python -m pip install ipykernel
2 為 Jupyter 新增核心
python -m ipykernel install --user --name=python3 --display-name py37
3、檢視 Jupyter notebook kernel
jupyter kernelspec list
相關文章
- 【Jupyter Notebook】jupyter notebook呼叫另一個.ipynb檔案
- Jupyter Notebook入門指南
- Jupyter Notebook的安裝
- Jupyter Notebook簡潔教程
- jupyter notebook 遠端訪問
- 搭建jupyter notebook伺服器伺服器
- Jupyter Notebook 使用與安裝
- 遠端訪問jupyter notebook
- Jupyter notebook快速入門教程
- pycharm中執行jupyter notebookPyCharm
- Jupyter Notebook修改登陸密碼密碼
- Jupyter Notebook 下安裝 PHP 核心PHP
- Anaconda下安裝Jupyter notebook
- jupyter notebook外掛環境配置
- Jupyter notebook 新增虛擬環境
- Jupyter notebook 中用 pip 安裝 tensorflow
- [譯] 給初學者的 Jupyter Notebook 教程
- Git各種撤銷操作Git
- Jupyter Notebook怎麼更改預設路徑
- Jupyter Notebook介紹、安裝及使用教程
- Jupyter Notebook介面也可以如此炫酷?有人把Notebook玩出了新花樣
- Jupyter Notebook的Kotlin核心(0.8版本)Kotlin
- 【PY】Jupyter Notebook 安裝與配置 實踐教程
- 修改 jupyter notebook 啟動工作路徑的方法
- Holer實現外網訪問本地Jupyter Notebook
- 如何修改Jupyter Notebook工作路徑(Anaconda中)
- Python視覺化圖系列(1)-----jupyter notebookPython視覺化
- Python,Jupyter Notebook,IPython快速安裝教程Python
- Jupyter Notebook 中同時使用 Python 和 RPython
- 如何在指定資料夾下進入jupyter notebook
- 視覺化執行Python的神器Jupyter Notebook視覺化Python
- jupyter notebook 中執行展示控制行的數量
- Bong!5 款超牛逼的 Jupyter Notebook 外掛!
- jupyter notebook中 切換不同的Python環境Python
- 最詳盡使用指南:超快上手Jupyter Notebook
- Python開發環境—— jupyter Notebook 安裝使用Python開發環境
- 手把手教你安裝Jupyter Notebook(保姆級教程)
- docker Linux 各種操作記錄DockerLinux