1
0

Merge pull request #3412 from the9ull/virtualenv-python3

electrum-env creates python3 virtualenv
This commit is contained in:
ThomasV
2017-11-29 14:30:57 +01:00
committed by GitHub

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