1. Extention 에 들어가 Python을 입력하고 install 해준다
2. python 과 phthon Extension Pack을 다운로드 해준다

3. 파이썬 홈페이지에 접속해 원하는버전 다운로드를 해준다.

https://www.python.org/

 

Welcome to Python.org

The official home of the Python Programming Language

www.python.org

4. 예) 크롬을 사용할시 chromedriver을 자신의 브라우저와 맞는 버전으로 다운로드 해준다.

chromedriver.chromium.org/downloads

 

ChromeDriver - WebDriver for Chrome - Downloads

Current Releases If you are using Chrome version 109, please download ChromeDriver 109.0.5414.25 If you are using Chrome version 108, please download ChromeDriver 108.0.5359.71 If you are using Chrome version 107, please download ChromeDriver 107.0.5304.62

chromedriver.chromium.org

 

5. 파일을 하나를 만들어 Hello를 뛰워준다 ( 예시) 파이썬의 파일 이름은 Hello.py 이다.)

print("Hello");

 

1. run 클릭 

2. Python File debug the currently active Python file 클릭

3. python file 클릭

4. F5 버튼 press 시 터미널에 Hello 가 찍힘

 

+ Recent posts