WARNING! I DID NOT TEST FURTHER FUNCTIONALITIES OF THE SOFTWARE!
USE AT YOUR OWN RISK!!!
Hello everybody,
there is a Namecoin electrum wallet, which you can download here:
https://namecoin.org/download/betas/This source is more suited, since the Namecoin-developers provide signed hashsums for the binaries and tar.gz-files. For verifiying the files, see:
https://bitcointalk.org/index.php?topic=6017.msg36620285#msg36620285For instance, download the Linux version via (Edit: the instructions are working with ubuntu 16.04 LTS)
wget https://www.namecoin.org/files/electrum-nmc/electrum-nmc-3.1.3-beta1/electrum-nmc-3.1.3-beta1.tar.gz
Unzip the file via
tar -xzvf electrum-nmc-3.1.3-beta1.tar.gz
And enter the resulting directory
cd electrum-nmc
Check the README.rst file firstly. I am not sure, what really is needed but the following seems necessary for a working installation
sudo apt-get install python3-pip
sudo apt-get install python3-pyqt5
sudo apt-get install python3-setuptools
sudo apt-get install pyqt5-dev-tools
sudo apt-get install protobuf-compiler
sudo apt-get install python-requests gettext
sudo apt-get install libudev-dev libusb-1.0-0-dev
Edit: I added the last line, which is necessary for building electrum.
I am also not sure whether the above covers all necessary libraries. If not please complete the missing by yourself and post it here (google is your friend). Then do
pip3 install .[full]
pyrcc5 icons.qrc -o gui/qt/icons_rc.py
protoc --proto_path=lib/ --python_out=lib/ lib/paymentrequest.proto
./contrib/make_locale
Now try to start electrum-nmc
./electrum-nmc
If the wallet works: Fine!
Edit: Repeating the instructions as given here, it worked. However, if you messed up your system somehow, see below.
I still got the following error message
cannot import name 'icons_rc'
Error: Could not find icons file.
Please run 'pyrcc5 icons.qrc -o gui/qt/icons_rc.py', and reinstall Electrum
And I was not able to get rid of it, even though the icons-file is generated where it should be. To "solve" this issue open gui/qt/__init__.py
nano gui/qt/__init__.py
Change
try:
from . import icons_rc
except Exception as e:
print(e)
print("Error: Could not find icons file.")
print("Please run 'pyrcc5 icons.qrc -o gui/qt/icons_rc.py', and reinstall Electrum")
sys.exit(1)
to
#try:
# from . import icons_rc
#except Exception as e:
# print(e)
# print("Error: Could not find icons file.")
# print("Please run 'pyrcc5 icons.qrc -o gui/qt/icons_rc.py', and reinstall Electrum")
# sys.exit(1)
Again run
pip3 install .[full]
And try again
./electrum-nmc
The wallet should start now. Might be, that the icons are missing now.
WARNING! I DID NOT TEST FURTHER FUNCTIONALITIES OF THE SOFTWARE!
USE AT YOUR OWN RISK!!!