invoke venv through its python module name for portability

This commit is contained in:
Romain PRIMET 2022-04-21 11:06:36 +02:00
parent 5397de576c
commit ba2d2f4ef0

View File

@ -1,6 +1,6 @@
#! /usr/bin/env bash
cd "$(dirname "$0")"
virtualenv -p python3 env
python3 -m venv env
source env/bin/activate
make dependencies