This answer from a Visual Studio Code developer says that it is reasonable to keep a Visual Studio Code project's settings.json
file in a project's git repository to enforce code standards across different development environments. One down-side though is that when I select the Python interpreter path at the bottom of the screen (so the linter can find the installed packages), the following entry gets added to the settings.json
file:
"python.pythonPath": "/path/to/conda/envs/my-env-name/bin/python",
This path is local to the machine and assumes that conda is being used. I have to avoid adding this setting to the settings.json
that I commit to the git repository, which is annoying.
Is there a way to set the Python path locally for a project without writing a setting into the settings.json
file?
It currently isn't directly supported, but we have a feature request that you can upvote if you would like to see it prioritized.
One workaround would be to:
settings.json
settings.json
See "VSCode User and Workspace Settings".
That way, your Git codebase can keep a generic settings.json
without local path.
Since this would work for only one project, you can instead reference all your projects in several Multi-root workspaces.
Then, regarding settings in that environment, you have three files:
That means you could switch workspaces, and in each multi-root workspace (each one composed of only one root), you would keep:
pythonPath
path in user settings (applies to everything, everywhere)pythonPath
for a given multi-root workspace in the Workspace setting (outside of the project folder which is the only root for that "multi-root" workspace)settings.json
project-specific settings in the project folder (which is the only root of the workspace)Again, by switching workspace, you can differentiate between:
pythonPath
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With