VS Code 手动下载并安装 VSIX 文件

使用 wget

  1. Visual Studio Code Marketplace 搜索插件。

    image

  2. 使用以下 URL 格式来下载 VSIX 文件:

    https://marketplace.visualstudio.com/_apis/public/gallery/publishers/{publisherName}/vsextensions/{extensionName}/{version}/vspackage?targetPlatform={platform}
    
    • {publisherName} 替换为发布者名称。
    • {extensionName} 替换为扩展名称。
    • {version} 替换为扩展的版本号。
    • {platform} 替换为目标平台。

    例:

    wget --content-disposition 'https://marketplace.visualstudio.com/_apis/public/gallery/publishers/ms-python/vsextensions/python/2025.9.2025070301/vspackage?targetPlatform=linux-x64'
    

参考:How can I manually download .vsix files now that the VS Code Marketplace no longer supplies them in-browser? | Stack Overflow

使用 VS Code

image

posted @ 2025-07-10 11:42  Undefined443  阅读(150)  评论(0)    收藏  举报