question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Configured debug type 'python' is installed but not supported in this environment.

See original GitHub issue

VS Code version

1.62.0

Extension version

v2021.11.1422169775

OS type

Linux

OS version

Linux x64 5.11.0-38-generic snap

Python distribution

Anaconda

Python version

3.8.10

Language server

Default

Expected behaviour

Disappear warning message: Configured debug type 'python' is installed but not supported in this environment.

Actual behaviour

Steps to reproduce

  1. Installing exention on vscode (https://marketplace.visualstudio.com/items?itemName=ms-python.python)
  2. Create hello.py with simple code; print("hello")
  3. Create launch.json with content:
{
    // 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": "Python: Current File (Integrated Terminal)",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "integratedTerminal",
            "cwd": "${fileDirname}"
        }
    ]
}
  1. Open Problem tab on panel, we will see: Configured debug type 'python' is installed but not supported in this environment.

Logs

No response

Code of Conduct

  • I agree to follow this project’s Code of Conduct

Issue Analytics

  • State:closed
  • Created 2 years ago
  • Reactions:6
  • Comments:17

github_iconTop GitHub Comments

2reactions
kimadelinecommented, Nov 16, 2021

Fixed upstream in VS Code, this problem doesn’t happen anymore in version 1.63.0-insider, commit 6a25ae3, date 2021-11-16T05:13:23.962Z

1reaction
kimadelinecommented, Nov 17, 2021

1.63 will be released in early December, most likely in the week after December 3rd. You can keep track of the work being done on VS Code’s iteration plan: https://github.com/microsoft/vscode/issues/136630

Read more comments on GitHub >

github_iconTop Results From Across the Web

Configured debug type "python" is not supported for VS Code
The debug type is not recognized. Make sure that you have a corresponding debug extension installed and that it is enabled. My launch.json...
Read more >
"Configured debug type 'python' is installed but not supported ...
Steps to Reproduce: Install the Python extension (either stable or nightly/Insiders) in local VS Code; Activate it in a workspace with Python ......
Read more >
Debugging configurations for Python apps in Visual Studio Code
This article mainly addresses Python-specific debugging configurations, including the necessary steps for specific app types and remote debugging. Initialize ...
Read more >
VS Code Debugger not working for python - Microsoft Q&A
I am experiencing debugging issue for my VS Code in WIN-10. It happened since weekend when I did OS restart .
Read more >
Debugging | Python in Visual Studio Code
The extension supports debugging of a number of types of python ... Debugging a standard python application is possible by adding the standard...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found