meta: Make Makefile platform-agnostic
not everything exposes a `virtualenv` command, this calls the module directly
This commit is contained in:
parent
9d9ec58a7c
commit
a490134c6f
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -15,7 +15,7 @@ clean:
|
|||
@find . -name flask_session -type d -not -path "./.venv/*" -ls -exec rm -r {} +
|
||||
|
||||
init_env:
|
||||
virtualenv .venv
|
||||
python3 -m venv .venv
|
||||
source .venv/bin/activate && pip3 install --upgrade pip
|
||||
source .venv/bin/activate && pip3 install -r requirements.txt txt
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue