From 682fcbdab141f2e0a82b997b221e7463c910632c Mon Sep 17 00:00:00 2001 From: Owen Wu <55355014+owenwu811@users.noreply.github.com> Date: Wed, 16 Aug 2023 20:21:35 -0700 Subject: [PATCH] Update on-create-command.sh --- .devcontainer/on-create-command.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.devcontainer/on-create-command.sh b/.devcontainer/on-create-command.sh index fdf77952..0ce787ad 100755 --- a/.devcontainer/on-create-command.sh +++ b/.devcontainer/on-create-command.sh @@ -3,7 +3,7 @@ set -e python3 -m venv .venv . .venv/bin/activate -pip install -U pip -pip install -r requirements/dev.txt -pip install -e . +pip3 install -U pip +pip3 install -r requirements/dev.txt +pip3 install -e . pre-commit install --install-hooks