mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-26 23:13:25 +00:00
12 lines
248 B
Bash
Executable file
12 lines
248 B
Bash
Executable file
#!/bin/bash
|
|
|
|
contrib=$(dirname "$0")
|
|
|
|
whereis pip3
|
|
if [ $? -ne 0 ] ; then echo "Install pip3" ; exit ; fi
|
|
|
|
rm $contrib/packages/ -r
|
|
|
|
#Install pure python modules in electrum directory
|
|
pip3 install -r $contrib/requirements.txt -t $contrib/packages
|
|
|