關於安裝nbextensions的問題

RainbowC0發表於2024-08-21

今天幫人安裝nbextensions又遇到些問題。

nbextensions是Jupyter Notebook的擴充套件,提供諸如自動補全的功能,但是如今新版的notebook不支援nbextensions,找遍全網也沒幾個說要哪些版本。這裡我記錄一下我安裝的版本:

notebook==6.4.12
jupyterlab==3.0.2

其他相關庫會作為以上兩個的依賴而自動選擇需要的版本,無需多慮。

另外,再次強調nbextensions是notebook的外掛擴充套件,而不是jupyterlab的。最新版jupyterlab已內建外掛管理器,(應該)比nbextensions好用。

完整安裝命令:

pip install -i https://mirrors.aliyun.com/pypi/simple jupyterlab==3.0.2 notebook==6.4.12 jupyter_contrib_nbextensions jupyter_nbextensions_configurator
jupyter contrib nbextension install --user
jupyter nbextensions_configurator enable --user

啟動 Notebook:

jupyter notebook

相關文章