Programming/Python
[Python] VSCode 설치
신샤인
2021. 3. 26. 12:11
반응형
Visual Studio Code(VSCode)
VSCode 설치
1.VSCode 홈페이지 들어가서 다운로드 한다.
https://code.visualstudio.com/download
Download Visual Studio Code - Mac, Linux, Windows
Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. Download Visual Studio Code to experience a redefined code editor, optimized for building and debugging modern web and cloud applications.
code.visualstudio.com
2. 다운로드한 VSCode를 설치한다.
3. VSCode 실행 한 후, Extension에서 Python 검색해서 다운로드 한다.
VSCode를 이용하여 Hello World! 출력하기
1. VSCode 실행한 후에 오른쪽 하단 Add Folder 클릭하여 작업 폴더 만들기
(저는 Sinkaz_python이라는 폴더라고 만들었습니다. 꾸벅꾸벅)
2. File - New File을 눌러서 hello.py라고 저장하여 저장합시다.(**작업 폴더 안에 저장)
3. 코드를 입력하고 오른쪽 클릭 후 Run Python File in Terminal 클릭해서 확인
print("hello world!")
VSCode로 실행한 Hello world!
반응형