Install ElectrumG 3.2.1 in linux machine

Hi,

I’m starting to test with BTG and I would like install ElectrumG 3.2.1 in ubuntu machine.
I have found windows and mac version in https://bitcoingold.org/electrumg/.

There is some link to download a tar.gz an install it in linux machine?
I can download the source code from github and install it with sudo python3 setup.py install?

Apologies for my english

https://linuxconfig.org/how-to-install-and-verify-electrum-bitcoin-wallet-on-linux

You can have a try. Basically the instructions should be the same except the singing validation part need to be take special care because it’s signed by me (check the git tag signatures).

I have download the last commit from GitHub - BTCGPU/electrum: ElectrumG; Bitcoin Gold thin client (master branch).
My ubuntu version is 16.04.5 LTS.
Then I execute the next command from source folder:
sudo python3 setup.py install

The last result is:


Processing dependencies for ElectrumG==3.2.1
Searching for qrcode
Reading Links for qrcode
Best match: qrcode 6.0
Downloading https://files.pythonhosted.org/packages/8d/b6/beed3d50e1047a2aa6437d3a653e5f31feb7f4de8bc054299dc205682e41/qrcode-6.0.tar.gz#sha256=037b0db4c93f44586e37f84c3da3f763874fcac85b2974a69a98e399ac78e1bf
Processing qrcode-6.0.tar.gz
Writing /tmp/easy_install-gc1ets2w/qrcode-6.0/setup.cfg
Running qrcode-6.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-gc1ets2w/qrcode-6.0/egg-dist-tmp-px6mjnmp
warning: install_lib: ‘build/lib’ does not exist – no Python modules to install

zip_safe flag not set; analyzing archive contents…
Removing /usr/local/lib/python3.5/dist-packages/UNKNOWN-0.0.0-py3.5.egg
Moving UNKNOWN-0.0.0-py3.5.egg to /usr/local/lib/python3.5/dist-packages
UNKNOWN 0.0.0 is already the active version in easy-install.pth

Installed /usr/local/lib/python3.5/dist-packages/UNKNOWN-0.0.0-py3.5.egg
error: The ‘qrcode’ distribution was not found and is required by ElectrumG

It seems that I have an older version of the qr package installed on my ubuntu machine.
Can I resolve this problem?

I resolve the problem executing:

sudo pip install qrcode[pil]

The final steps for ubuntu 16.04 installation:

1 Like