pybitcoin icon indicating copy to clipboard operation
pybitcoin copied to clipboard

"services" not found

Open GildedHonour opened this issue 8 years ago • 2 comments

>>> from pybitcoin import BitcoinPrivateKey
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/alex/.local/lib/python3.6/site-packages/pybitcoin/__init__.py", line 10, in <module>
    import services
ModuleNotFoundError: No module named 'services'
>>> from pybitcoin import BitcoinPrivateKey
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/alex/.local/lib/python3.6/site-packages/pybitcoin/__init__.py", line 10, in <module>
    import services
ModuleNotFoundError: No module named 'services'

GildedHonour avatar Oct 14 '17 13:10 GildedHonour

$ pip3.6 install --user services
Collecting services
  Could not find a version that satisfies the requirement services (from versions: )
No matching distribution found for services

GildedHonour avatar Oct 14 '17 13:10 GildedHonour

This doesn't work with Python 3: #56

Try with Python 2. "services" is a local import, pip installing it won't do you any good.

ghost avatar Nov 23 '17 18:11 ghost