Skip to content

Instantly share code, notes, and snippets.

@papr
Created May 6, 2019 12:20
Show Gist options
  • Select an option

  • Save papr/cee69604af30e97ce5104a9273ca421d to your computer and use it in GitHub Desktop.

Select an option

Save papr/cee69604af30e97ce5104a9273ca421d to your computer and use it in GitHub Desktop.
VS Code launch files for Pupil Capture and Player
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Pupil Capture",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/pupil_src/main.py",
"console": "integratedTerminal",
"subProcess": true,
"args": [
"capture",
],
},
{
"name": "Pupil Player",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/pupil_src/main.py",
"console": "integratedTerminal",
"subProcess": true,
"args": [
"player",
],
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment