We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
wheel
1 parent 3ad6e63 commit 11df68eCopy full SHA for 11df68e
Makefile
@@ -14,11 +14,11 @@ install:
14
15
dependencies:
16
if [ ! -d $(ROOT_DIR)/venv ]; then python3 -m venv $(ROOT_DIR)/venv; fi
17
- source $(ROOT_DIR)/venv/bin/activate; yes w | pip install -e .
+ source $(ROOT_DIR)/venv/bin/activate; python -m pip install wheel; yes w | python -m pip install -e .
18
19
application:
20
21
- source $(ROOT_DIR)/venv/bin/activate; yes w | pip install -r requirements.txt
+ source $(ROOT_DIR)/venv/bin/activate; python -m pip install wheel; yes w | python -m pip install -r requirements.txt
22
23
clean:
24
rm -rf $(ROOT_DIR)/venv;
0 commit comments