본문 바로가기
① IT 스타트 (IT Competence)/Tip

visual studio code에 설치되는 extension down load 방법

by ->^_^<- 2025. 7. 22.
반응형

환경설정

Visual Studio Code도 최신버전으로 설치후 진행하자.
최신버전이 아닌 경우 호환성 문제로
"Unable to install extension "*.vsix" as it is not compatible" 오류가 발생했다.

vsix파일과 아래 링크를 통해 다운받는
VSIXPackage파일은 동일한 형태로
별도 작업업이 단순히 확장자를 .vsix로 변경해주면 VS Code에서 인식 가능한 확장 프로그램 파일이 된다.


vsix 파일 다운받기


vsix파일을 다운받는 링크가 없어져서 직접 주소를 작성해서 다운받아야 한다

아래 블로그를 통해 방법 확인

# 다운로드 주소 템플릿


<https://$>{publisher}.gallery.vsassets.io/_apis/public/gallery/publisher/${publisher}/extension/${extension name}/${version}/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage

출처: https://hunseop2772.tistory.com/405 [저장소:티스토리]

예시1)  Excel Viewer (버전 4.2.59)


https://marketplace.visualstudio.com/ 에서 원하는 기능을 검색 후 주소를 확인

https://marketplace.visualstudio.com/items?itemName=GrapeCity.gc-excelviewer

Excel Viewer - Visual Studio Marketplace

Extension for Visual Studio Code - Edit Excel spreadsheets and CSV files in Visual Studio Code and VS Code for the Web.

marketplace.visualstudio.com


아래 3가지 정보 확인이 필요
Publisher: GrapeCity
Extension Name: gc-excelviewer
Version: 4.2.59

다운로드 링크 :
https://GrapeCity.gallery.vsassets.io/_apis/public/gallery/publisher/GrapeCity/extension/gc-excelviewer/4.2.59/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage


예시2) python


검색링크 :
https://marketplace.visualstudio.com/items?itemName=ms-python.python

Python - Visual Studio Marketplace

Extension for Visual Studio Code - Python language support with extension access points for IntelliSense (Pylance), Debugging (Python Debugger), linting, formatting, refactoring, unit tests, and more.

marketplace.visualstudio.com

다운로드링크 작성

https://ms-python.gallery.vsassets.io/_apis/public/gallery/publisher/ms-python/extension/python/2025.11.2025071801/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage


예시3)  python debugger


검색링크 :
https://marketplace.visualstudio.com/items?itemName=ms-python.debugpy

Python Debugger - Visual Studio Marketplace

Extension for Visual Studio Code - Python Debugger extension using debugpy.

marketplace.visualstudio.com


다운로드 링크 :

https://ms-python.gallery.vsassets.io/_apis/public/gallery/publisher/ms-python/extension/debugpy/2025.11.2025070101/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage


예시4)  python extension pack

https://marketplace.visualstudio.com/items?itemName=donjayamanne.python-extension-pack
https://donjayamanne.gallery.vsassets.io/_apis/public/gallery/publisher/donjayamanne/extension/python-extension-pack/1.7.0/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage

반응형