Create python3 virtualenv

This commit is contained in:
Martino Salvetti 2017-11-27 11:42:49 +01:00
parent 9425319dcd
commit d0f179e347
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@
if [ -e ./env/bin/activate ]; then
source ./env/bin/activate
else
virtualenv env
virtualenv env -p `which python3`
source ./env/bin/activate
python3 setup.py install
fi