You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, our extensions.json lists both ms-python.python and ms-python.vscode-pylance, despite the fact that the Python extension installs Pylance by default. Since the extension works best with the Python Debugger extension installed, we should either:
Remove the explicit recommendation of Pylance, and just rely on the other extensions recommended by the Python extension; or
Add Python Debugger to the recommendations to make our recommendation explicit.
The text was updated successfully, but these errors were encountered:
Is the python debugger extension useful/accessible?
Absolutely. It is required to run debug sessions in VS Code for Python projects, including break points, call stacks, watching variables, runtime execution of Python code within the debugged process.
As Mick has said, yes. Additionally it's required (if you want to debug Python) for the remote debugging method I'm writing up. I can open a PR to include everything required for that method (launch.json and changes to extensions.json) all at once if that's preferable.
Currently, our
extensions.json
lists bothms-python.python
andms-python.vscode-pylance
, despite the fact that the Python extension installs Pylance by default. Since the extension works best with the Python Debugger extension installed, we should either:The text was updated successfully, but these errors were encountered: