搭建jupyter notebook伺服器

水電費嘎嘎發表於2020-11-12

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 更換主題(背景、字型)

相關文章