Problem creating an account using standalone

hey, there!
can someone help debug the error: no module named ‘nacl.sining’ during my account creation

Is it possible one of the source files was accidentally modified? It looks like there is a typo in the import module name, located in account.py.

The line:
from nacl.sining import SigningKey
should be:
from nacl.signing import SigningKey

Try fixing the source file and see if that works. I think it’s referring to this line here: https://github.com/algorand/py-algorand-sdk/blob/master/algosdk/account.py#L1

thanks so much, It worked!

1 Like