Skip to content

Commit a5af420

Browse files
committed
python: update makefile
1 parent 738e957 commit a5af420

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
install:
1010
@command -v python3 >/dev/null 2>&1 || { echo >&2 "Python 3 is required"; exit 1; }
1111
[ -d ".venv" ] || python3 -m venv .venv
12-
. .venv/bin/activate; pip install -Ur requirements.txt
12+
. .venv/bin/activate; pip install --upgrade pip; pip install -Ur requirements.txt
1313

1414
run:
1515
. .venv/bin/activate; python3 main.py

0 commit comments

Comments
 (0)