Symptom
Break point does not work when debugging python with venv.
Solution
Add “justMyCode”: false to launch.json
{ "configurations": [ { "name": "Python: Current File", "type": "python", "request": "launch", "program": "${file}", "console": "integratedTerminal", "justMyCode": false } ] }