These are my settings:
User Settings
{ "atomKeymap.promptV3Features": true, "editor.multiCursorModifier": "ctrlCmd", "editor.formatOnPaste": true, "python.pythonPath": "python3", "command": "python3", }Workspace Settings
{ "python.pythonPath": "${workspaceFolder}/env/bin/python3.6", "git.ignoreLimitWarning": true }tasks.json
{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "0.1.0", "command": "python3", "isShellCommand": true, "args": ["${file}"], "showOutput": "always" }
If I use the debug console, the version and path is right:

But the output always defaults to "python2.7", no matter what I do.

How can I fix this?



zshand defaulted to2.7. After changing interpreter to3.6& openingbashin VS Code all was well. - kevin_theinfinityfund