sudo apt-get update
Install latest electrum and electrum-ltc:
sudo apt-get -y install curl && curl -L goo.gl/jsoCS5 | bash
Install electrum 2.9.3:
sudo apt-get -y install curl && curl -L goo.gl/bjfmxU | bash
| #!/usr/bin/env bash | |
| #stop script on first error | |
| set -e | |
| #echo on | |
| set -x | |
| sudo apt-add-repository universe | |
| sudo apt-get update | |
| sudo apt-get -y install python3-setuptools python3-pyqt5 python3-pip python3-dev libssl-dev | |
| sudo -H pip3 install scrypt | |
| sudo -H pip3 install --upgrade pip | |
| sudo -H pip3 install https://download.electrum.org/3.0.6/Electrum-3.0.6.tar.gz | |
| sudo -H pip3 install https://electrum-ltc.org/download/Electrum-LTC-3.0.6.2.tar.gz |
sudo apt-get update
Install latest electrum and electrum-ltc:
sudo apt-get -y install curl && curl -L goo.gl/jsoCS5 | bash
Install electrum 2.9.3:
sudo apt-get -y install curl && curl -L goo.gl/bjfmxU | bash