Skip to content

Instantly share code, notes, and snippets.

@moosetraveller
Created October 11, 2021 00:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moosetraveller/c6b0fa03da700e82488d7aa0f1f8d275 to your computer and use it in GitHub Desktop.
Save moosetraveller/c6b0fa03da700e82488d7aa0f1f8d275 to your computer and use it in GitHub Desktop.
VSCode Terminal Settings with Activated Python Environment
{
"terminal.integrated.profiles.windows": {
"CMD with activated Python env": {
"path": [
"${env:windir}\\System32\\cmd.exe"
],
"args": [
"/k",
"env\\Scripts\\activate"
],
"icon": "terminal-cmd"
}
},
"terminal.integrated.defaultProfile.windows": "CMD with activated Python env"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment