- Published on
How to downgrade VSCode extension
- Authors
- Name
- Johan Guse
- @johanguse
Today, I encountered an issue with the popular AI extension, Codeium. Fortunately, the team quickly resolved the problem, but yesterday I had to rollback to an older version to fix the issue on my side. If you need to downgrade any extension to an older version, here are two ways to downgrade a VSCode extension:
Method 1: Using VSCode (the easiest way)
- Open VSCode and click on the
Extensions
tab, or pressCTRL+SHIFT+X
(Windows) orCMD+SHIFT+X
(Mac) to search for extensions.
- Type the extension name, right-click on the plugin name, and select
Install Another Version
.
- A list of versions will appear. Select the desired version and click on it to
Install
.
Method 2: Using a .vsix file from the VSCode Marketplace
- Visit the extension's page on the VSCode Marketplace, navigate to the
Version History
section, and download the.vsix
file to your computer.
- After downloading the
.vsix
file, open VSCode and pressCTRL+SHIFT+P
(Windows) orCMD+SHIFT+P
(Mac). In the command line, typevsix
and select the option to install from the downloaded file.
- Install the
.vsix
file.
- Restart VSCode: Open the Command Palette with
CTRL+ALT+R
(Windows) orCMD+ALT+R
(Mac), typeReload Window
, and selectDeveloper: Reload Window
.
Voilà! Downgrading a VSCode extension is pretty straightforward with these methods. I hope this helps you out next time you run into any issues or needs to downgrade an extension.