@JB my bet is that there's an issue with your virtual environment. When you created the folder, you're presented with the option to select an interpreter. This will scaffold the python virtual environment for you. The task being executed is being ran locally from the .venv
folder.
To verify, you can open the command palette and type python and confirm your interpreter is set to your .venv
. If you don't see your virtual environment, then you can follow these steps to reinstall and configure python for your environment. Clicking on Activate.ps1 will execute the powershell script, setting your terminal prompt to the virtual environment, the (.venv)
. Check for any errors by running python --version
or python -m pip install -r requriements.txt
and if you see any, post them in a comment below.