Skip to content

Instantly share code, notes, and snippets.

@AnthonyVadala
Created November 3, 2017 14:15
Show Gist options
  • Save AnthonyVadala/eff68559dc31e07438e7cbf6d345ed33 to your computer and use it in GitHub Desktop.
Save AnthonyVadala/eff68559dc31e07438e7cbf6d345ed33 to your computer and use it in GitHub Desktop.
Python3 in Visual Studio Code (macOS)
//Python3 Configuration
{
"version": "0.1.0",
"command": "python3",
"isShellCommand": true,
"showOutput": "always",
"args": ["${file}"]
}
@AnthonyVadala
Copy link
Author

AnthonyVadala commented Nov 3, 2017

Shortcut

[Command] + [Shift] + [P]

Type

Tasks: Configure Task

Copy and paste into [tasks.json]

{
    "version": "0.1.0",
    "command": "python3",
    "isShellCommand": true,
    "showOutput": "always",
    "args": ["${file}"]
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment