-
If I create {
"python.pythonPath": ".venv/Scripts/python.exe"
} The extension complains that no interpreter is selected. If I change it to I would like to have it with forward slashes so that I can commit this file into Git and ensure all contributors can have it work automatically, including contributors that use Linux. |
Beta Was this translation helpful? Give feedback.
Answered by
papb
Jul 12, 2021
Replies: 1 comment
-
Oh, amazingly, I found a workaround, using {
"python.defaultInterpreterPath": ".venv/Scripts/python.exe"
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
brettcannon
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Oh, amazingly, I found a workaround, using
python.defaultInterpreterPath
works!