Created
July 27, 2024 15:11
-
-
Save Kunkgg/07f869431f61efef357b7af1fc03e60d to your computer and use it in GitHub Desktop.
vscode settings for pythonpath
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"terminal.integrated.env.windows": { | |
"PYTHONPATH": "${workspaceFolder}${pathSeparator}${env:PYTHONPATH}" | |
}, | |
"terminal.integrated.env.linux": { | |
"PYTHONPATH": "${workspaceFolder}${pathSeparator}${env:PYTHONPATH}" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment