伺服器上配置jupyter環境

2021-09-02 17:23:31 字數 832 閱讀 6661

**:

在伺服器上配置jupyter, 方便我們遠端登入.

第一步:安裝jupyter, pip3 install jupyter (此處使用的是python3)

第二步:生成配置檔案jupyter notebook --generate-config

第三步:生成金鑰 開啟python3

from notebook.auth import passwd

passwd()

此時會讓你兩次輸入密碼,然後就會生成秘鑰

************

修改配置檔案

vim ~/.jupyter/jupyter_notebook_config.py

第四步:配置一下路由器的埠**,

第五步:在伺服器端啟動 jupyter notebook

踩坑經歷:

1.running as root it not recommended. use --allow-root to bypass.

參考:

最後:the jupyter notebook is running at: http://[all ip addresses on your system]:67676767676788/

按之前的情況,應該是可以開啟了,然而我並不知道伺服器的ip。。。。

不過按這個配置基本就差不多了。

伺服器配置jupyter步驟

1.安裝jupyter pip install jupyter2.生成配置檔案 jupyter notebook generate config3.開啟python,生成秘鑰 from notebook.auth import passwd passwd 然後設定登入密碼,生成秘鑰,並複製你的秘鑰 ...

在伺服器中配置Jupyter

使用遠端伺服器進行實驗,而伺服器又沒有視覺化的介面,使用jupyter notebook可以很好地與遠端伺服器進行互動。英文教程.首先要確保安裝jupyter notebook pip install jupyter生成配置檔案 jupyter notebook generate config如圖 ...

配置jupyter伺服器的密碼 詳細

配置jupyter伺服器的密碼,有什麼用呢?1.安全性 2.方便記住密碼 因為是自己設定的嘛 首先,使用pip或者conda安裝好jupyter並按照慣例配置好環境變數之後,生成jupyter配置檔案目錄和檔案 在shell下面執行下述命令,在windows10的user jupyter下面會生成乙...