카테고리 없음
✅ VS Code 필수 확장 프로그램
greater flamingo
2025. 2. 14. 09:44
728x90
반응형
✅ VS Code 필수 확장 프로그램
1️⃣ 기본 개발 환경
- Python → Python 개발 필수 (ms-python.python)
- Pylance → 빠른 코드 분석 (ms-python.vscode-pylance)
- Jupyter → Jupyter Notebook 지원 (ms-toolsai.jupyter)
- GitLens → Git 히스토리, 변경 사항 추적 (eamodio.gitlens)
2️⃣ 생산성 & 코드 품질
- ESLint → JavaScript/TypeScript 코드 스타일 검사 (dbaeumer.vscode-eslint)
- Prettier → 코드 자동 정렬 (esbenp.prettier-vscode)
- Error Lens → 실시간 오류 강조 (usernamehw.errorlens)
3️⃣ WSL & Docker 개발
- Remote - WSL → WSL 환경에서 개발 (ms-vscode-remote.remote-wsl)
- Docker → Docker 컨테이너 관리 (ms-azuretools.vscode-docker)
4️⃣ AI 보조 개발 도구
- Cursor AI → AI 기반 코드 보완 (cursor.cursor)
- CodeGPT → ChatGPT 기반 코드 도우미 (timkmecl.chatgpt)
📌 설치 방법:
터미널에서 일괄 설치 가능
code --install-extension ms-python.python \
ms-python.vscode-pylance \
ms-toolsai.jupyter \
eamodio.gitlens \
dbaeumer.vscode-eslint \
esbenp.prettier-vscode \
usernamehw.errorlens \
ms-vscode-remote.remote-wsl \
ms-azuretools.vscode-docker \
cursor.cursor \
timkmecl.chatgpt
이렇게 구성하면 Python, WSL, Git, AI 보조 기능까지 깔끔하게 세팅됨. 🚀
PowerShell에서 여러 개의 Visual Studio Code 확장 프로그램을 한 번에 설치하려면, 다음과 같은 방법을 사용할 수 있습니다:
- 명령어를 한 줄로 작성하기: PowerShell에서는 여러 줄로 작성된 명령어를 실행할 때 문제가 발생할 수 있습니다. 이를 해결하기 위해 모든 확장 프로그램 ID를 공백으로 구분하여 한 줄로 작성합니다:
code --install-extension ms-python.python ms-python.vscode-pylance ms-toolsai.jupyter eamodio.gitlens dbaeumer.vscode-eslint esbenp.prettier-vscode usernamehw.errorlens ms-vscode-remote.remote-wsl ms-azuretools.vscode-docker cursor.cursor timkmecl.chatgpt
배치 파일 사용하기: 여러 명령어를 순차적으로 실행하려면 배치 파일을 작성할 수 있습니다. 다음 단계를 따라주세요:
- 메모장을 열어 아래 내용을 입력합니다:
code --install-extension ms-python.python ms-python.vscode-pylance ms-toolsai.jupyter eamodio.gitlens dbaeumer.vscode-eslint esbenp.prettier-vscode usernamehw.errorlens ms-vscode-remote.remote-wsl ms-azuretools.vscode-docker cursor.cursor timkmecl.chatgpt
- 파일을 install_extensions.bat로 저장합니다.
- PowerShell에서 해당 파일이 있는 디렉터리로 이동한 후, 다음 명령어를 실행합니다
.\install_extensions.bat
이러한 방법으로 여러 개의 VS Code 확장 프로그램을 한 번에 설치할 수 있습니다. 각 확장 프로그램의 설치 상태는 PowerShell 창에서 확인할 수 있습니다.
반응형