Is it really an error when I'm getting Traceback (most recent call last) without the word “error”?
Is it really an error when I'm getting Traceback (most recent call last) without the word “error”?
What I get is this:
Traceback (most recent call last)
File "maian.py", line 24 in <module>
from web3 import web3
file "/usr/local/lib/python3.6/web3/__init__.py", line 5, in <module>
Correct me if I am wrong, but execution of program stops because the web3
thing (__init__.py
) doesn't get loaded for some reason? How can I fix this?
web3
__init__.py
What puzzles me again is that I'm not seeing a message at the very end telling me that something is wrong? I should now debug by trying to print some message...if it doesn't get printed then the program really stops while trying to initialize the web3
module?
web3
this is all output ? weird.
– rocksportrocker
Sep 4 '18 at 21:06
i can take a screenshot if you need to? i know people on here hate screenshots though :)
– kpopguy
Sep 4 '18 at 21:11
If there is nothing more to copy-paste, what should a screenshot show more ?
– rocksportrocker
Sep 4 '18 at 21:13
That does not look like a normal traceback should look. It doesn't even look like a truncated traceback. Did you retype this by hand? If you did, please copy-paste the error message from actual interpreter output.
– user2357112
Sep 4 '18 at 21:25
0
Thanks for contributing an answer to Stack Overflow!
But avoid …
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
But avoid …
To learn more, see our tips on writing great answers.
Required, but never shown
Required, but never shown
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
..the script maian.py then points to other scripts...notably web3...but i don't get it, i need to try print("something") at the end of maian.py now to see if it really fails...
– kpopguy
Sep 4 '18 at 21:03