Post
Topic
Board Bitcoin Technical Support
Re: python-bitcoinrpc: modulenotfounderror no module named 'bitcoinrpc'
by
HCP
on 15/03/2019, 09:53:17 UTC
I'm running bitcoind/ bitcoind -regtest on Windows 10 and am already able to use bitcoin-cli -regtest along with json-rpc methods to perform basic operations and get balances etc. When I try to do this programmatically on python 3 using Jeff Garzik's python-bitcoinrpc package (https://github.com/jgarzik/python-bitcoinrpc)
 I get a modulenotfounderror. However, my pip3 freeze shows python-bitcoinlib==0.10.1 and also python-bitcoinrpc==1.0.
What am I doing wrong?

Well... according to the install instructions on github... it looks like this might be Python 2 only...
change the first line of setup.py to point to the directory of your installation of python 2.*

Have you tried it with a Python 2.7 install? Huh