mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 23:41:35 +00:00
12 lines
254 B
Bash
Executable file
12 lines
254 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
|
|
|