Reputation: 407
I would like to install previous version of Python extension for VSCode (ms-python.python) to troubleshoot something, but when I am trying to use context menu with "Install another version..." I just have an error "server returned 404"
Upvotes: 9
Views: 29473
Reputation: 11
UI now supports "Install another version" option in VS Code version 1.76.0.
VS Code Extensions - Install another Version
Upvotes: 1
Reputation: 135
This can be done using "Install Another Version" option available with VS Code extension store.
Upvotes: 7
Reputation: 16110
The 404 issue is a bug in the VS Code marketplace. They are actively working to fix the problem.
Upvotes: 2
Reputation: 409
You need to install it from a .vsix
file. You can find them here.
Download the .vsix
file of the version you want. You may have to click assets
to see them.
Then open VSCode, go to extensions
-> click on the three dots -> install from vsix
and select your file.
To install the .vsix
you can also use the command
code --install-extension ms-python-release.vsix
sources :
- How can I install Visual Studio Code extensions offline?
- https://code.visualstudio.com/docs/editor/extension-gallery#_install-from-a-vsix
Upvotes: 15