Closed3
asdf + poetry で jupyter lab を立ち上げる
asdf のインストール
基本的には公式ドキュメントに従えば良い
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.11.3
その後、.zshrc
に次の行を追加
. "$HOME/.asdf/asdf.sh"
asdf でインストール
まずは Python をインストールし、適用
asdf plugin-add python
asdf install python latest
asdf global python latest
次に poetry をインストールし、適用
asdf plugin-add poetry
asdf install poetry latest
asdf global asdf latest
poetry でプロジェクトを開始
poetry init
poetry add jupyterlab
poetry で jupyterlab を起動
poetry run jupyter lab
このスクラップは2023/06/14にクローズされました