mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 09:21:39 +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; }
|
||||
|
||||
rm $venv_dir -rf
|
||||
virtualenv $venv_dir
|
||||
rm "$venv_dir" -rf
|
||||
virtualenv -p $(which python3) $venv_dir
|
||||
|
||||
source $venv_dir/bin/activate
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue