首頁 > 軟體

ubuntu安裝jupyter並設定遠端存取的實現

2022-03-31 13:02:44

Jupyter Notebook是一個Web應用程式,允許您建立和共用包含實時程式碼,方程,視覺化和說明文字的檔案。

簡單的介紹就是:Jupyter Notebook是Ipython的升級版,而Ipython可以說是一個加強版的互動式 Shell,也就是說,它比在terminal裡執行python會更方便,介面更友好

環境:

  • Ubuntu16.04 64位元

安裝pip

(1)更新和升級包

sudo apt-get update  
sudo apt-get upgrade

(2)安裝pip

sudo apt-get install python-pip3

安裝Jupyter

(1)升級pip3

sudo pip3 install --upgrade pip3

(2)安裝Jupyter

sudo pip3 install jupyter

注意這裡一定要有sudo。否則Jupyter安裝會失敗
安裝成功會顯示下面的資訊

注意:如果提示

執行命令:

sudo pip3 install -vU setuptools

再次安裝

生成一個 notebook 組態檔

預設情況下,組態檔 ~/.jupyter/jupyter_notebook_config.py 並不存在,需要自行建立。使用下列命令生成組態檔:

jupyter notebook --generate-config

如果是 root 使用者執行上面的命令,會發生一個問題:

Running as root it not recommended. Use --allow-root to bypass.

提示資訊很明顯,root 使用者執行時需要加上 --allow-root 選項。

jupyter notebook --generate-config --allow-config

執行成功後,會出現下面的資訊:

Writing default config to: /root/.jupyter/jupyter_notebook_config.py

生成密碼

自動生成

從 jupyter notebook 5.0 版本開始,提供了一個命令來設定密碼:jupyter notebook password,生成的密碼儲存在 jupyter_notebook_config.json

$ jupyter notebook password
Enter password:  ****
Verify password: ****
[NotebookPasswordApp] Wrote hashed password to /Users/you/.jupyter/jupyter_notebook_config.json

手動生成

除了使用提供的命令,也可以通過手動安裝,我是使用的手動安裝,因為jupyter notebook password 出來一堆內容,沒耐心看。開啟 ipython 執行下面內容:

In [1]: from notebook.auth import passwd
In [2]: passwd()
Enter password:
Verify password:
Out[2]: 'sha1:67c9e60bb8b6:9ffede0825894254b2e042ea597d771089e11aed'

sha1:67c9e60bb8b6:9ffede0825894254b2e042ea597d771089e11aed 這一串就是要在 jupyter_notebook_config.py 新增的密碼。

c.NotebookApp.password = u'sha1:67c9e60bb8b6:9ffede0825894254b2e042ea597d771089e11aed'
3. 修改組態檔

 修改組態檔

jupyter_notebook_config.py 中找到下面的行,取消註釋並修改。

c.NotebookApp.ip='*'#163行
c.NotebookApp.password = u'sha:ce...剛才複製的那個密文'  #217行
c.NotebookApp.open_browser = False#208
c.NotebookApp.port =8888 #可自行指定一個埠, 存取時使用該埠228行

以上設定完以後就可以在伺服器上啟動 jupyter notebook,jupyter notebook, root 使用者使用 jupyter notebook --allow-root。開啟 IP:指定的埠, 輸入密碼就可以存取了。

需要注意的是不能在隱藏目錄 (以 . 開頭的目錄)下啟動 jupyter notebook, 否則無法正常存取檔案。

到此這篇關於ubuntu安裝jupyter並設定遠端存取的實現的文章就介紹到這了,更多相關jupyter 遠端存取內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com