mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 09:37:31 +00:00
10 lines
267 B
Bash
10 lines
267 B
Bash
#!/bin/bash
|
|
|
|
CONTRIB="$(dirname "$0")"
|
|
test -n "$CONTRIB" -a -d "$CONTRIB" || exit
|
|
|
|
rm "$CONTRIB"/../packages/ -r
|
|
|
|
#Install pure python modules in electrum directory
|
|
python3 -m pip install -r "$CONTRIB"/deterministic-build/requirements.txt -t "$CONTRIB"/../packages
|
|
|