Update on-create-command.sh

pip to pip3 since using python3
This commit is contained in:
Owen Wu 2023-07-04 17:48:36 -07:00 committed by GitHub
parent cb825687a5
commit 632667c2d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@ set -e
python3 -m venv .venv python3 -m venv .venv
. .venv/bin/activate . .venv/bin/activate
pip install -U pip pip3 install -U pip
pip install -r requirements/dev.txt pip3 install -r requirements/dev.txt
pip install -e . pip3 install -e .
pre-commit install --install-hooks pre-commit install --install-hooks