sync notes(auto)

This commit is contained in:
Kaz Saita(raspi5) 2024-05-23 15:30:02 +09:00
parent 91bd6c0b03
commit 7c06975b4a

View file

@ -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
```