jupyter notebook連線遠端伺服器

2021-08-31 03:15:47 字數 1112 閱讀 6904

**本文對紅字部分的在伺服器上啟動jupyter notebook做了簡單修改作為自己的備忘;作者原文非常完美,閱讀請移步檢視完整版本

在遠端伺服器上,啟動jupyter notebooks服務:

jupyter notebook --no-browser --port=8889
在本地終端中啟動ssh:

ssh -n -f -l localhost:8888:localhost:8889 username@serverip
其中: -n 告訴ssh沒有命令要被遠端執行; -f 告訴ssh在後台執行; -l 是指定port forwarding的配置,遠端埠是8889,本地的埠號的8888。

注意:username@serverip替換成伺服器的對應賬號。

最後開啟瀏覽器,訪問:http://localhost:8888/

生成預設配置檔案

jupyter notebook --generate-config生成訪問密碼(token)

終端輸入ipython,設定你自己的jupyter訪問密碼,注意複製輸出的sha1:******xx密碼串

in [1]: from notebook.auth import passwd

in [2]: passwd()

enter password:

verify password:

out[2]: 'sha1:***************xx'

修改./jupyter/jupyter_notebook_config.py中對應行如下

在伺服器上啟動jupyter notebook

nohup jupyter notebook >/dev/null 2>&1 &

或者jupyter notebook最後開啟瀏覽器,訪問:http://ip:8888/如10.12.9.51:8888

遠端訪問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...