I have some troubles with selecting interpreter for Python. First, I downloaded the Python Interpreter from python.org
website. Then installed VSCode and its Python extension as usual. However, I got a message at the bottom of the program "Select Python Interpreter". To solve this, I chose "Enter interpreter path" and browse to my Python.exe file. But it still didn't work, the message is always "Enter interpreter path". You can see this picture for more details.
VS Code Screenshot
Here is my setting.json
file
{
"python.defaultInterpreterPath": "c:\\Users\\tuanm\\AppData\\Local\\Programs\\Python\\Python39\\python.exe",
"[python]": {
"editor.wordBasedSuggestions": false
}
}
What is wrong here and how to fix it? Any answer, thanks in advance!!