markblundeberg / coinsplitter

Bitcoin Cash / Bitcoin Satoshi Vision coin splitter.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to install under Fedora 29

ekuester opened this issue · comments

# uninstall old electron-cash if necessary
rm -fv .local/bin/electron-cash
rm -frv .local/lib/python3.6/
rm -frv .local/lib/python3.7/
# install dependencies if necessary
sudo dnf install python3-setuptools python3-PyQt5 python3-pip
# now install modified electron-cash
wget https://github.com/markblundeberg/coinsplitter_checkdatasig/releases/download/3.3.2CS/Electron_Cash-3.3.2CS.tar.gz -O Electron_Cash-3.3.2CS.tar.gz
pip3 install --user Electron_Cash-3.3.2CS.tar.gz
# will be installed to ~/.local/bin/electron-cash
# important, otherwise you get message -> No module named 'PyQt5.sip'
pip3 uninstall pyqt5
# now electron-cash will start with
electron-cash

Thanks for programming bitcoin-splitter ...

I'm personally used to just running it from the extracted directory (without using the 'install') -- but that could work too. 👍