Reputation: 79
I keep on getting these messages on the bottom right corner of my screen when opening up VS code. Any idea on how to get rid of it?
I can still write code and run the code fine but I don't understand why this is happening.
I've tried by deleting the python extension and anything related to python in the video extensions tab, but no luck.
Upvotes: 5
Views: 28307
Reputation: 113
I was having this issue and tried the above answer and it still didn't work. It turns out I hadn't installed python on my system yet. I didn't realize because I normally use it remotely.
From the VSCode documentation:
Quick start
- Step 1. Install a supported version of Python on your system (note: that the system install of Python on macOS is not supported).
- Step 2. Install the Python extension for Visual Studio Code.
- Step 3. Open or create a Python file and start coding!
Upvotes: 0
Reputation: 1
Just uninstall all unverified Python extensions and reinstall the Python extension developed by Microsoft.
Upvotes: 0
Reputation: 9923
Please update the python extension to the latest version
or install the pre-release version directly. ( may be more useful to you )
this will basically solve your problem.
If the error continues, follow these steps:
- Uninstall Python extension (if you have pylance uninstall it first). Uninstall any other extension that is failing.
- Close all instances of VS Code.
- Go to, %USERPROFILE%/.vscode/extensions (on windows) or ~/.vscode/extensions on Linux/Mac.
- Delete any folder with the name starting with ms-python.python*
- Start VS Code, and install Python extension (also pylance if you uninstalled it in step 1).
Upvotes: 18