I'm trying to set up a wallet on Django, but I keep getting this error:
ImportError: No module named web3
this is how I call it:
from web3 import Web3
(also tried import web3)
I'm trying to set up a wallet on Django, but I keep getting this error:
ImportError: No module named web3
this is how I call it:
from web3 import Web3
(also tried import web3)
If you install web3 and put it into the same directory as your python file that should work since it's a non-native library.
https://ethereum.stackexchange.com/questions/40350/how-to-solve-importerror-no-module-named-web3