Pybitcointools python 3.5 support

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

Samuel Dare

Posted 2017-07-16T11:11:00.780

Reputation: 139

Do you have more than one version of python installed?MeshCollider 2017-07-16T12:51:19.093

Used to have 2.7 ages ago but uninstalled itSamuel Dare 2017-07-16T12:53:56.953

Answers

0

try:

import pybitcointools

that fix my problem

Jesus Ramos

Posted 2017-07-16T11:11:00.780

Reputation: 24