搭建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呼叫另一個.ipynb檔案
- jupyter notebook各種操作
- Jupyter Notebook入門指南
- Jupyter Notebook的安裝
- Jupyter Notebook簡潔教程
- 如何基於Jupyter notebook搭建Spark叢集開發環境Spark開發環境
- jupyter notebook 遠端訪問
- Jupyter Notebook 使用與安裝
- 遠端訪問jupyter notebook
- Jupyter notebook快速入門教程
- pycharm中執行jupyter notebookPyCharm
- 本地電腦上訪問雲伺服器上的 Jupyter Notebook伺服器
- Jupyter Notebook修改登陸密碼密碼
- Jupyter Notebook 下安裝 PHP 核心PHP
- Anaconda下安裝Jupyter notebook
- jupyter notebook外掛環境配置
- Jupyter notebook 新增虛擬環境
- Jupyter notebook 中用 pip 安裝 tensorflow
- [譯] 給初學者的 Jupyter Notebook 教程
- 基於Ubuntu+Python+Tensorflow+Jupyter notebook搭建深度學習環境UbuntuPython深度學習
- 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開發環境