HTML을 의한 VScode 설치

ITselfhiam
|2023. 9. 25. 15:41

1. 본인을 mac m2 pro를 사용을 하여 Visual Studio Code를 다운로드 받았습니다.

다운로드 사이트 : https://code.visualstudio.com/

 

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

자신에 맞는 버전을 다운로드 받을 수 있으면 기존에 설치를 하였는데, 만약 기존에 파일을 설치하였는데 삭제를 원하는 경우

명령창을 이용하여 데이터를 삭제할 수 있다.

rm -fr ~/Library/Preferences/com.microsoft.VSCode.helper.plist 
rm -fr ~/Library/Preferences/com.microsoft.VSCode.plist 
rm -fr ~/Library/Caches/com.microsoft.VSCode
rm -fr ~/Library/Caches/com.microsoft.VSCode.ShipIt/
rm -fr ~/Library/Application\ Support/Code/
rm -fr ~/Library/Saved\ Application\ State/com.microsoft.VSCode.savedState/

# 확장 프로그램이 들어가있는 .vscode 해당 데이터를 날릴때는 중요하니
# 복사본을 미리 만들어 두고 삭제하길 권고합니다.
rm -fr ~/.vscode/

 

이후에 설치를 진행하시면 됩니다.

'Study > HTML' 카테고리의 다른 글

[HTML] Day3  (0) 2023.10.10
[HTML] Day2-1  (1) 2023.10.10
[HTML] Day2  (0) 2023.10.10
[HTML] Day1  (0) 2023.09.25
[HTML] 활용  (0) 2023.09.25