How to install vscode
macOS, Linux, 그리고 Windows에서의 vscode 설치에 대한 방법을 다룸.
MacOS
homebrew를 이용하여 설치하는 것이 가장 편한 방법임.
brew install --cask visual-studio-code
Reference
https://formulae.brew.sh/cask/visual-studio-code
2023.12.15 - [Mac] - [Homebrew] 사용법 요약본
2023.12.15 - [Mac] - [Homebrew] Formula 와 cask 의 차이.
Linux (Debian or Ubuntu)
아래의 url에서 설치용 .deb 를 다운로드하고, apt 를 이용하여 설치하는 것이 쉬움.
https://code.visualstudio.com/Download
다운로드한 .deb 파일을 다음의 명령어로 apt를 이용해 설치.
sudo apt install [다운로드 .deb 파일]
- 위의 코드 예에서 [다운로드 .deb 파일] 부분을 'code_1.85.1_xxxx.deb' 와 같은 다운로드한 .deb 파일명(extension포함)으로 바꾸어 수행하면 됨.
Reference
https://code.visualstudio.com/docs/setup/linux
https://dsaint31.tistory.com/454
Windows (winget을 이용한)
가장 쉬운 건 설치파일을 다운로드받아 클릭하여 설치하는 것이지만,
다음 URL에 나온대로 winget을 이용하는 방식도 많이 사용됨.
https://ds31x.blogspot.com/2023/07/env-vscode-winget.html?view=classic
Windows (일반적 설치파일 이용)
대부분의 경우, Windows 유저라면 이 방식이 가장 익숙함.
2024.02.05 - [개발환경] - [vscode] vscode 설치하기 (on Windows)
VSCode 제거하기
https://ds31x.blogspot.com/2023/07/env-vscode.html?view=classic
2023.12.15 - [개발환경] - [vscode] How to completely uninstall vscode on Mac
같이 보면 좋은 글들
https://ds31x.blogspot.com/2023/07/env-visual-studio-code-and-visual-studio.html?view=classic
2024.09.08 - [utils] - [Utils] winget: Window Package Manager
'개발환경' 카테고리의 다른 글
[CE] Process versus Thread (0) | 2023.12.27 |
---|---|
[vscode] How to completely uninstall vscode on Mac (0) | 2023.12.15 |
[vscode] external terminal 사용하기 (0) | 2023.12.15 |
[CE] shortcuts (or hot-keys, 단축키) : Basic (0) | 2023.12.15 |
[conda] shell에서 conda 명령어가 제대로 동작하지 않을 때 : conda init (0) | 2023.10.24 |