jupyter lab環境でplotをインストール後、buildエラーが出る問題
Plotのグラフ描画環境を作成している際に、
Build Recommended
JupyterLab build is suggested:
@jupyter-widgets/jupyterlab-manager needs to be included in build plotlywidget needs to be included in build jupyterlab-plotly needs to be included in build
といったようなエラーが、出ることがあります。
このエラーの解決法をご紹介します。
jupyterlab3.0はbuildの手順を必要とせずに使用者がpipもしくはcondaで拡張機能をインストールすれば問題なくビルドできるようになる拡張システムを導入しました。これによって、plotlyはjupyterLabのこの機能をサポートしているため、以下の拡張機能をインストールする必要はなくなりました。
以下の拡張機能をアンインストールします
jupyter labextension uninstall @jupyter-widgets/jupyterlab-manager jupyterlab-plotly plotlywidget
jupyterLabの拡張機能のリスト確認
jupyter labextension list
現在のplotly環境構築方法
pipかcondaでplotlyをインストール
pip install "plotly>=5" "ipywidgets>=7.6"
# or, if using conda:
# conda install -c conda "plotly>=5"
# conda install "ipywidgets>=7.6"
以上の手順で修正を行えばBuildエラーがでなくなります。