0

I am trying to run Vitalik Buterin's python bitcoin wrapper.

I installed it from PyPi (pip install pybitcointools ).

When I try to run:

import bitcoin

I get the following error:

ImportError Traceback (most recent call last) in () ----> 1 import bitcoin

ImportError: No module named 'bitcoin'

I will appreciate any pointers on this

0xsegfault
  • 137
  • 1
  • 8

1 Answers1

0

try:

import pybitcointools

that fix my problem