JupyterLabでPlotlyを使うとグラフが表示されず、対応に時間がかかったので覚書
環境
macOS Catalina 10.15.7
python3.8.0
対応
① Node.js (安定版)をインストール(Homebrew使う)
brew install nodebrew
nodebrew setup
echo 'export PATH=$HOME/.nodebrew/current/bin:$PATH' >> ~/.bash_profile
source ~/.bash_profile
nodebrew install stable
#最新版をインストールしたいときは
#nodebrew install latest
② JupytarLabの機能を拡張
jupyter labextension install jupyterlab-plotly;
参考URL