pumpkinLi
pumpkinLi

Reputation: 1

How to solve the problem"Python extension loading..." in visual studio code?

When I open a python file, Visual Studio Sode show "Python extension loading...". After a while, it shows this error: "Extension host terminated unexpectedly."

I have tried:

  1. uninstall all extensions and reinstall.
  2. uninstall visual studio code completely and reinstall.
  3. change my environment path and remove ";;" .....

This problem happened in windows10.

Upvotes: 0

Views: 4439

Answers (2)

Zaffer
Zaffer

Reputation: 1809

Note that telemetry.enableTelemetry as described in the original answer has been deprecated. Please use this instead:

"telemetry.telemetryLevel": "all|error|crash|off"

Original answer

Try to disable telemetry in the user settings:

"telemetry.enableTelemetry": false

Upvotes: 3

odysseusmax
odysseusmax

Reputation: 28

Change back to an older version, I'm also having this issue, I switched back to the older version and now its fixed.

Upvotes: 0

Related Questions