jupyter 伺服器安裝隨筆

2022-07-25 06:51:08 字數 2670 閱讀 3052

python3:

python3 -m pip install --upgrade pip

python3 -m pip install jupyter

pkg install py36-pyzmq-18.0.1

在freebsd需要安裝py*-sqlite3、需要安裝py*-pyzmq

jupyter notebook --generate-config
jupyter lab --generate-config

jupyter server --generate-config
該命令會在使用者目錄下建立乙個配置目錄.jupyter目錄裡會看到乙個jupyter_notebook_config.py or jupyter_lab_config.py

主要的配置項:

# 登入密碼,預設沒有密碼,所以每次啟動伺服器後都會產生乙個隨機數token,配置了密碼後就不用每次使用隨機數token了

密碼生成

jupyter lab password

或者:在命令列下輸入ipython,進入repl環境

執行:from notebook.auth import passwd;passwd()

根據提示輸入明文密碼

生成hash後的密碼類似如下:

in [2]: from notebook.auth import passwd; passwd()

enter password:

verify password:

out[2]: 'sha1:e4ac9ea2e432:ce17c208cac9c15c59dd6f34ffe2a262f6d65bf3'

jupyterlab安裝與notebook安裝時更改配置檔案設定密碼等都相同,區別**如下:

pip install jupyterlab

pkg install node npm -y

檢視已安裝外掛程式:jupyter labextension list

更新已安裝外掛程式:jupyter labextension update --all

jupyter labextension install @jupyterlab/toc

jupyter labextension install @ryantam626/jupyterlab_code_formatter  #--no-build引數可不編譯等待統一編譯#jupyter lab build  #(jupyter lab build  --minimize=false)
pip install jupyterlab_code_formatter ;jupyter serverextension enable --py jupyterlab_code_formatter

啟動jupyter server

或者jupyter lab

修復pip

curl | python3

freebsd install lxml

pkg install libxslt

pkg install libxml2 py*-libxml2

pip install lxml

#install jupyter-lsp

pip install jupyter-lsp

jupyter labextension install @krassowski/jupyterlab-lsp

jupyter lab build --minimize=false#在jupyter lab build 錯誤時可用

1. 開啟anaconda prompt

輸出下行**生成 .ipython 配置檔案

ipython profile create
2. 在當前使用者 ~/.ipython/profile_default/下開啟生成的檔案

修改以上內容 ,注意取消注釋。

重新開啟jupyter lab / jupyter notebook就可以了

啟動jupyter lab 錯誤:attributeerror: 『extensionmanager『 object has no attribute 『_extensions『

解決辦法:pip install nbclassic==0.2.8

阿里雲伺服器安裝jupyter

1.安裝anaconda 2.配置jupyter notebook jupyter notebook generate config3.在ipython中獲取token in 1 from notebook.auth import passwd in 2 passwd 4.修改jupyter配置檔案...

伺服器配置jupyter步驟

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

jupyter遠端訪問伺服器

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