2020年7月20日月曜日

Raspberry Pi(Raspbian Buster)のJupyterにJupyter Widgets(ipywidgets)をインストールする

Jupyter Widgets(ipywidgets)でインタラクティブなノートブックを作成する事が出来るようになります。

〇Jupyter Widgetsの画面

インストール方法

1. nodejsのインストール
sudo apt-get -y install curl

curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -

sudo apt-get install -y nodejs

2. yarnのインストール
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -

echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list

sudo apt-get update && sudo apt-get -y install yarn

3. jupyter-widgetsのインストール
※pipenvを使用している場合、仮想環境のフォルダに移動後、pipenv shellを実行する
pipenv shell

pipenv install ipywidgets

export NODE_OPTIONS="--max-old-space-size=2048"

jupyter nbextension enable --py widgetsnbextension

jupyter labextension install @jupyter-widgets/jupyterlab-manager

関連情報

・Jupyter Widgets(ipywidgets)のgithubリポジトリ
https://github.com/jupyter-widgets/ipywidgets

0 件のコメント:

コメントを投稿