Jupyter notebook 區域網伺服器配置

2021-10-08 03:46:10 字數 713 閱讀 8042

生成配置檔案

開啟終端,執行以下命令

jupyter notebook --generate-config
linux 下生成的檔案在:

~/.jupyter/jupyter_notebook_config.py
~ 是你的home 目錄。

windows 生成的檔案在:

c:\users\username\.jupyter\jupyter_notebook_config.py
如果這個目錄有jupyter_notebook_config.json檔案,把它刪除,它的優先順序.py結尾的配置檔案高。

設定密碼:

in [1]: from notebook.auth import passwd

in [2]: passwd()

enter password:

verify password:

out[2]: 'sha1:1227f56beef9:7bd824901b3b8e3f4cb41c4561679e450dcafc77'

輸入你自己的密碼,我這裡輸入的是我的名字。

開啟~/.jupyter/jupyter_notebook_config.py,找到以下語句並修改:

<

遠端訪問jupyter notebook

ipython notebook是乙個基於瀏覽器的python資料分析工具,使用起來非常方便,具有極強的互動方式和富文字的展示效果。jupyter是它的公升級版,但是它預設只能在本地訪問,如果想把它安裝在伺服器上,然後在本地遠端訪問,則需要進行如下配置 1.登陸遠端伺服器 2.生成配置檔案 jupy...

Jupyter Notebook啟用conda環境

windows環境配置如下 1.開啟預設conda環境 root c users username 2.選擇要在jupyter notebook中啟用的env,並啟用 root style transfer d programdata miniconda3 envs style transfer r...

遠端訪問jupyter notebook

步驟如下 1.登入遠端伺服器 2.生成jupyter配置檔案 jupyter notebook generate config 3.手動生成密碼 開啟ipython,建立密碼的密文 in 1 from notebook.auth import passwd in 2 passwd enter pas...