Trying to create an account, "noModule named algosdk"

I’ve already checked my terminal to make sure that algosdk is installed. But it cant find it.Im using python3.7

I’m a noobie so what can I do to fix this?

You are using a virtual environment/venv inside VS Code.
Therefore, you need to install the SDK inside the venv.

Concretely, you need to run inside the console of VS Code (the one at the bottom of your screenshot):

python3 -m pip install py-algorand-sdk

or

python -m pip install py-algorand-sdk

Learn about venv there:

1 Like