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
commit 7173101a06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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