We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 738e957 commit a5af420Copy full SHA for a5af420
python/Makefile
@@ -9,7 +9,7 @@
9
install:
10
@command -v python3 >/dev/null 2>&1 || { echo >&2 "Python 3 is required"; exit 1; }
11
[ -d ".venv" ] || python3 -m venv .venv
12
- . .venv/bin/activate; pip install -Ur requirements.txt
+ . .venv/bin/activate; pip install --upgrade pip; pip install -Ur requirements.txt
13
14
run:
15
. .venv/bin/activate; python3 main.py
0 commit comments