diff --git a/Makefile b/Makefile index 804ac2e..287ff3f 100644 --- a/Makefile +++ b/Makefile @@ -6,9 +6,9 @@ install: echo [+] Déploiement dans $$THSF_DIR; \ python3 -m venv thsf_venv; \ . thsf_venv/bin/activate; \ - pip install -r requirements.txt ;\ - pip install . ;\ - pip install gunicorn; \ + pip3 install -r requirements.txt ;\ + pip3 install . ;\ + pip3 install gunicorn; \ run: set -e ;\ @@ -31,6 +31,6 @@ clean: rm -Rf ./build ;\ rm -Rf ./src/thsf.egg-info; \ . thsf_venv/bin/activate; \ - pip uninstall thsf -y + pip3 uninstall thsf -y all: stop clean install run