I just installed a bitcoin wallet from command line from Electrum.org
heres how i installed it in my user account directory .. /home/user/...
sudo pip3 install https://download.electrum.org/2.8.2/Electrum-2.8.2.tar.gz
and it installed with no issues.
When i attempt to run the software from command line using
electrum
or if i try electrum help
i get this ImportError
(heres their documentation http://docs.electrum.org/en/latest/cmdline.html)
ImportError: No module named 'xmlrpclib'
heres the traceback if you are trying to replicate it
File "/usr/local/bin/electrum", line 71, in check_imports
import jsonrpclib
File "/usr/local/lib/python3.5/dist-packages/jsonrpclib/__init__.py", line 5, in <module>
from jsonrpclib.jsonrpc import Server, MultiCall, Fault
File "/usr/local/lib/python3.5/dist-packages/jsonrpclib/jsonrpc.py", line 50, in <module>
from xmlrpclib import Transport as XMLTrasnport
I have done
sudo apt-get update
sudo apt-get upgrade
sudo pip install xmlrpclib
but have had no avail.
If anyone can provide some insight thatd be greatly appreciated.