-
Notifications
You must be signed in to change notification settings - Fork 215
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ImportError: No module named 'coincurve' #11
Comments
@vivosmith Are you sure you are using Python 3.5+? |
Yes. Made sure. |
C:\Users*\Desktop\bit-master>bitcoin2.py |
Offending code:
I just wanted to test the balance (which is zero). But even that would not work. |
What was your install command? |
I tried pip & pip3 install bit |
Try |
Weird. For whatever reason python3 does not work, but python does. I think that cleared it up. I have never had to enter python before opening a script, however it could be conflicting versions I have that I forgot about. I am testing the balance right now to see if it works. Was the coincurve issue related to specific code for a specific version? |
The issue is your default application for .py files is not the same Python that is on PATH. |
Hi
|
This is the Github of the |
When I go to run a program based on this, I get:
Traceback (most recent call last):
File "C:\Users*\Desktop\bit-master\bitcoin2.py", line 1, in
from bit import Key
File "C:\Users*\Desktop\bit-master\bit_init_.py", line 1, in
from bit.format import verify_sig
File "C:\Users***\Desktop\bit-master\bit\format.py", line 2, in
from coincurve import *
ImportError: No module named 'coincurve'
The problem is I imported coincurve directly into my folder as well as installing it with pip. Further I tried to look for verify_sig anywhere and could not find it.
The text was updated successfully, but these errors were encountered: