# VSCode Python debugger with UV This is useful for debugging CLIs, scripts with in-line requirements, or other tools that are easier to invoke via UV. ```json { "version": "0.2.0", "configurations": [ { "name": "Debug with uv", "type": "debugpy", "request": "launch", "python": "uv", "pythonArgs": [ "run", "python" ], "program": "${file}" } ] }