ubuntu - Visual Studio Code 설치하기 (펌)
2019. 1. 29. 16:38ㆍIT-OS/Linux
반응형
아래와 같은 방법으로 Visual Studio code를 설치할 수 있었다. 그런데, "curl" 이 설치되어 있지 않으면 당연히
error 가 나며 실행되지 않는다. 그러므로 이 명령어 한번 해놓고 아래것들 하자~
0. $ sudo apt-get install curl
... 주저리 주저리
펌 : https://webnautes.tistory.com/1197
1. 마이크로소프트 GPG 키를 다운로드하여 /etc/apt/trusted.gpg.d/ 경로에 복사해줍니다.
$ sudo sh -c 'curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > /etc/apt/trusted.gpg.d/microsoft.gpg' |
2. Visual Studio Code를 다운로드 받기 위한 저장소를 추가합니다.
$ sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list' |
3. 추가한 저장소로부터 패키지 목록을 가져옵니다.
$ sudo apt-get update |
4. Visual Studio Code를 설치합니다.
$ sudo apt-get install code |
5. 터미널 또는 데스크톱 환경에서 실행할 수 있습니다.
$ code |
'IT-OS > Linux' 카테고리의 다른 글
Eclipse 실행하는 바탕화면 아이콘 만들기 (0) | 2019.01.30 |
---|---|
Ubuntu/CentOS에서 Gnome / KDE (GUI) 설치 (0) | 2019.01.30 |
ubuntu- 버전확인 (0) | 2019.01.29 |
Linux [CentOS] - (Licmd : Linux Command) 유용한 명령어 모음 (1) (0) | 2019.01.16 |
ip 알아내기 (0) | 2019.01.15 |