Ubuntu에 VSCode 설치
아래 공식 홈페이지에 들어갑니다.
Visual Studio Code - Code Editing. Redefined
Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.
code.visualstudio.com
좌측 설치 파일(.deb)을 다운 받습니다.
다운로드한 설치 파일은 Downloads 폴더에 저장됩니다.
Downloads 폴더 경로에서 아래 명령어를 실행하여 VSCode를 설치해 줍니다.
# sudo apt install ./파일명
sudo apt install ./code_1.95.0-1730153583_amd64.deb
설치가 끝나고 화면 좌측 하단에 Show Applications 버튼을 누르면 VSCode가 설치된 것을 확인할 수 있습니다.
아이콘을 우클릭하여 Add to Favorites를 누르면 좌측 사이드바에 추가할 수 있습니다.
터미널에 아래 명령어를 이용하여 실행할 수도 있습니다.
code
실행하면 다음과 같은 화면이 나오게 됩니다.
VSCode 한국어 설정
한국어 설정을 위해 좌측 다섯 번째에 Extensions를 클릭하고,
가장 위에 있는 지구본 모양의 Korean Language Pack을 설치합니다.
그러면 우측 하단에 다음과 같은 창이 뜨는데 Change Language and Restart를 눌러 줍니다.
다음과 같이 한국어로 설정된 것을 확인할 수 있습니다.
'공부 > Ubuntu' 카테고리의 다른 글
YOLOv7 설치 및 실시간 객체 인식 (5) | 2024.11.02 |
---|---|
Ubuntu 20.04.6에서 Python 버전 변경 (0) | 2024.11.01 |
Ubuntu에 PyTorch 설치 (0) | 2024.10.31 |
Ubuntu에 Anaconda 설치 (4) | 2024.10.31 |
Ubuntu에 cuDNN 설치 (0) | 2024.10.31 |