launch.json
1 { 2 // 使用 IntelliSense 了解相关属性。 3 // 悬停以查看现有属性的描述。 4 // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 5 "version": "0.2.0", 6 "configurations": [ 7 8 9 { 10 "name": "Python: current", 11 "type": "python", 12 "request": "launch", 13 "program": "${file}", 14 "console": "integratedTerminal", 15 // "python": "python3", 16 "env": { 17 "PYTHONPATH": "${workspaceRoot}/TIDALDL-PY/tidal_dl/" 18 }, 19 "justMyCode": false 20 }, 21 { 22 "name": "Python: common line", 23 "type": "python", 24 "request": "launch", 25 "program": "${workspaceRoot}/TIDALDL-PY/tidal_dl/__init__.py", 26 "console": "integratedTerminal", 27 // "python": "python3", 28 "env": { 29 "PYTHONPATH": "${workspaceRoot}/TIDALDL-PY/tidal_dl/" 30 }, 31 "args": [ 32 "--link", 33 "https://tidal.com/browse/track/70973230", 34 "-o", 35 "e:\\test", 36 "-q", 37 "0", 38 "-g" 39 ] 40 }, 41 { 42 "name": "Python: main", 43 "type": "python", 44 "request": "launch", 45 "program": "${workspaceRoot}/TIDALDL-PY/tidal_dl/__init__.py", 46 "console": "integratedTerminal", 47 // "python": "python3", 48 "env": { 49 "PYTHONPATH": "${workspaceRoot}/TIDALDL-PY/tidal_dl/" 50 }, 51 "justMyCode": false 52 53 }, 54 { 55 "name": "Python: gui", 56 "type": "python", 57 "request": "launch", 58 "program": "${workspaceRoot}/TIDALDL-PY/tidal_gui/__init__.py", 59 "console": "integratedTerminal", 60 // "python": "python3", 61 "env": { 62 "PYTHONPATH": "${workspaceRoot}/TIDALDL-PY/tidal_dl/" 63 }, 64 "justMyCode": false 65 66 } 67 ] 68 }