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.
17 lines
457 B
17 lines
457 B
#!/bin/bash
|
|
|
|
|
|
whereis pip3
|
|
if [ $? -ne 0 ] ; then echo "Install pip3" ; exit ; fi
|
|
|
|
#Install pure python modules in electrum directory
|
|
pip3 install pyaes -t ./packages
|
|
pip3 install ecdsa -t ./packages
|
|
pip3 install pbkdf2 -t ./packages
|
|
pip3 install requests -t ./packages
|
|
pip3 install qrcode -t ./packages
|
|
pip3 install protobuf -t ./packages
|
|
pip3 install dnspython -t ./packages
|
|
pip3 install jsonrpclib-pelix -t ./packages
|
|
pip3 install PySocks -t ./packages
|
|
|
|
|