diff --git a/content/20240310135606 raspberry piにjupyterhubをインストール.md b/content/20240310135606 raspberry piにjupyterhubをインストール.md index a973b11..8c836ea 100644 --- a/content/20240310135606 raspberry piにjupyterhubをインストール.md +++ b/content/20240310135606 raspberry piにjupyterhubをインストール.md @@ -15,8 +15,8 @@ venvを有効にして、jupyter, jupyterhubをインストール $ sudo apt install gcc python3-dev # 依存関係。自分の場合はこれが足りていなくて、pip installでコケた $ mkdir jupyter $ cd jupyter -$ python -m venv .venv -$ . .venv/bin/activate +$ python -m venv venv +$ . venv/bin/activate (venv) $ pip install jupyter jupyterhub ```