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.
|
#!/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 |
|
|
|
|