搭建jupyter notebook伺服器
1. 安裝jupyter notebook
pip install jupyter -i https://mirrors.aliyun.com/pypi/simple/
2. 生成配置檔案
jupyter notebook --generate-config --allow-root
會生成配置檔案 ~/.jupyter/jupyter_notebook_config.py
3. 生成密碼
jupyter notebook password
輸入兩次密碼,會生成密碼檔案 ~/.jupyter/jupyter_notebook_config.json
4. 修改配置檔案
在配置檔案新增如下配置
c.NotebookApp.ip = '*'
c.NotebookApp.allow_root = True
c.NotebookApp.open_browser = False
c.NotebookApp.port = 8888
c.NotebookApp.password = u'剛才生成的密文'
c.ContentsManager.root_dir = '工作目錄'
5. 執行jupyter
使用nohup &命令或者藉助screen實現jupyter的後端執行
jupyter notebook
仍然訪問不了有可能是購買的雲伺服器有防火牆,需要到雲伺服器網站上設定安全訪問規則
6. 主題設定
相關文章
- Jupyter Notebook
- 【Jupyter Notebook】jupyter notebook呼叫另一個.ipynb檔案
- Jupyter Notebook的使用
- Jupyter Notebook入門指南
- jupyter notebook各種操作
- Jupyter Notebook的安裝
- Jupyter Notebook新增Ruby支援
- pycharm中執行jupyter notebookPyCharm
- Jupyter Notebook 使用與安裝
- Anaconda下安裝Jupyter notebook
- jupyter notebook 刪除指定 kernel
- 為Jupyter Notebook 新增目錄
- jupyter notebook 遠端訪問
- Jupyter notebook快速入門教程
- 如何基於Jupyter notebook搭建Spark叢集開發環境Spark開發環境
- 基於Ubuntu+Python+Tensorflow+Jupyter notebook搭建深度學習環境UbuntuPython深度學習
- 本地電腦上訪問雲伺服器上的 Jupyter Notebook伺服器
- jupyter notebook外掛環境配置
- Jupyter notebook 新增虛擬環境
- Jupyter notebook 中用 pip 安裝 tensorflow
- Jupyter Notebook修改登陸密碼密碼
- Jupyter可能並非理想的Notebook
- Jupyter Notebook 下安裝 PHP 核心PHP
- 在Jupyter Notebook,沉浸式體驗ChatGPTChatGPT
- jupyter notebook如何選擇conda環境
- Jupyter Notebook配置,一篇就夠
- Jupyter Notebook 中同時使用 Python 和 RPython
- Jupyter Notebook介紹、安裝及使用教程
- Jupyter Notebook怎麼更改預設路徑
- Jupyter Notebook的Kotlin核心(0.8版本)Kotlin
- Python視覺化圖系列(1)-----jupyter notebookPython視覺化
- 認識jupyter notebook 和 Matplotlib的基本用法
- 如何修改Jupyter Notebook工作路徑(Anaconda中)
- [譯] 給初學者的 Jupyter Notebook 教程
- Jupyter Notebook介面也可以如此炫酷?有人把Notebook玩出了新花樣
- 將onda虛擬環境新增到Jupyter Notebook
- 【PY】Jupyter Notebook 安裝與配置 實踐教程
- 視覺化執行Python的神器Jupyter Notebook視覺化Python