It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
pip3 install --upgrade setuptools
pip3 install trezor
/home//.local/lib/python3.5/site-packages/trezorlib
cd /home//Downloads
git clone https://github.com/trezor/python-trezor.git
mv /home//.local/lib/python3.5/site-packages/trezorlib /home/ /.local/lib/python3.5/site-packages/trezorlib.old
cp /home//Downloads/python-trezor/trezorlib /home/ /.local/lib/python3.5/site-packages/trezorlib
cp /home//.local/lib/python3.5/site-packages/trezorlib.old/coins.json /home/ /.local/lib/python3.5/site-packages/trezorlib
electrum-nmc/plugins/trezor/trezor.py
return "Testnet" if constants.net.TESTNET else "Bitcoin"
return "Testnet" if constants.net.TESTNET else "Namecoin"
electrum-nmc/lib/keystore.py
coin = 1 if constants.net.TESTNET else 0
coin = 1 if constants.net.TESTNET else 7
cd/electrum-nmc
pip3 uninstall electrum-nmc
pip3 install .[full]
wget https://www.namecoin.org/files/electrum-nmc/electrum-nmc-3.1.3-beta1/electrum-nmc-3.1.3-beta1.tar.gz
tar -xzvf electrum-nmc-3.1.3-beta1.tar.gz
cd electrum-nmc
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
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
./electrum-nmc
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
nano gui/qt/__init__.py
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)
#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)
pip3 install .[full]
./electrum-nmc