Skip to content

Commit 11df68e

Browse files
committed
Install wheel early to get around issues
1 parent 3ad6e63 commit 11df68e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ install:
1414

1515
dependencies:
1616
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 .
17+
source $(ROOT_DIR)/venv/bin/activate; python -m pip install wheel; yes w | python -m pip install -e .
1818

1919
application:
2020
if [ ! -d $(ROOT_DIR)/venv ]; then python3 -m venv $(ROOT_DIR)/venv; fi
21-
source $(ROOT_DIR)/venv/bin/activate; yes w | pip install -r requirements.txt
21+
source $(ROOT_DIR)/venv/bin/activate; python -m pip install wheel; yes w | python -m pip install -r requirements.txt
2222

2323
clean:
2424
rm -rf $(ROOT_DIR)/venv;

0 commit comments

Comments
 (0)