遠端訪問Jupyter

2021-10-13 21:49:28 字數 677 閱讀 4272

由於實驗室的伺服器沒有圖形介面,所以需要在本地電腦上通過瀏覽器訪問伺服器上的jupyter程式。記錄下遠端訪問jupyter的方法。

其實非常簡單,可以分為這樣幾步:

在伺服器上安裝了jupyter

生成jupyter的密碼:

jupyter notebook password
密碼加密後的值可以在

/home//.jupyter/jupyter_notebook_config.json

看到,複製下來,在第4步將它加入jupyter的配置檔案裡。

4. 在/home//.jupyter/jupyter_notebook_config.py配置檔案裡加上幾行配置資訊

# set ip to '*' to bind on all inte***ces (ips) for the public server

# it is a good idea to set a known, fixed port for server access

在伺服器上執行命令jupyter notebook或jupyter lab

在本地電腦上執行命令

ssh -n -f -l :localhost: @ -p -i

在本地瀏覽器開啟http://localhost:

輸入jupyter的密碼,即可進入

jupyter遠端訪問

今天嘗試用 pycharm 遠端連線伺服器的 jupyter,在網上看到了乙個非常 awesome 的辦法,在這分享一下。伺服器啟動 jupyter 我這裡直接允許 root 了,可以按需求刪掉 allow root jupyter notebook allow root no browser本地使...

docker容器下遠端訪問jupyter的方式

在有乙個docker容器的情況下 首先連線docker ssh p docker容器的埠 username ip然後安裝jupyter notebook pip即可 在伺服器上開啟jupyter notebook 命令如下所示 jupyter notebook allow root no brows...

jupyter遠端訪問伺服器

由於開啟伺服器的瀏覽器較慢,所以想在本地的瀏覽器開啟jupyter,裡面的核心是伺服器的。這樣就解決了執行慢的問題,能遠端訪問伺服器 具體步驟如下 0.在伺服器那邊要先安裝jupyter,參考 如果jupyter要配置多個核心,請參考 1.生成配置檔案,在遠端終端下執行下面的命令自動生成 jupyt...