Eleanor reported an issue where certain settings are unexpectedly added to settings.json, for example:
{
"python-envs.defaultEnvManager": "ms-python.python:system",
"python-envs.defaultPackageManager": "ms-python.python:pip",
"python-envs.pythonProjects": []
}
I was able to reproduce the issue using the following steps:
- Open a workspace.
- Ensure
python.useEnvironmentsExtension is set to true or that the env extension is active.
- Open the Command Palette and run “Python: Select Interpreter” or click the interpreter in the status bar.
- Select a System Python interpreter (choose the global Python install).
- Check User Settings, notice
python-envs.defaultEnvManager: "ms-python.python:system and python-envs.pythonProjects: [] are added.
Will move onto investigating the root cause next.