Address comments

This commit is contained in:
emisargent 2023-02-16 23:11:56 +00:00
parent 1216b6d3ad
commit c1e78b9941
3 changed files with 7 additions and 5 deletions

View file

@ -7,6 +7,10 @@ if ! git remote | grep -q "fork"; then
git remote add fork https://github.com/${GIT_USER}/flask
fi
# Create and activate a virtualenv
python3 -m venv .venv
. .venv/bin/activate
# Upgrade pip and setuptools
python -m pip install --upgrade pip setuptools