You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
261 B
10 lines
261 B
#!/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
|
|
|
|
|