mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 02:35:20 +00:00
Use python3 for virtualenv
This commit is contained in:
parent
20443aa068
commit
9ceaac6310
1 changed files with 2 additions and 2 deletions
|
@ -6,8 +6,8 @@ contrib=$(dirname "$0")
|
||||||
|
|
||||||
which virtualenv > /dev/null 2>&1 || { echo "Please install virtualenv" && exit 1; }
|
which virtualenv > /dev/null 2>&1 || { echo "Please install virtualenv" && exit 1; }
|
||||||
|
|
||||||
rm $venv_dir -rf
|
rm "$venv_dir" -rf
|
||||||
virtualenv $venv_dir
|
virtualenv -p $(which python3) $venv_dir
|
||||||
|
|
||||||
source $venv_dir/bin/activate
|
source $venv_dir/bin/activate
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue