JAVA를 잡아라!...

Python_파이참(PyCharm) 본문

Python

Python_파이참(PyCharm)

onivv 2024. 5. 16. 12:09

파이썬 프로그램을 개발할 때 널리 사용되는 통합 개발 환경(IDE: Integrated Development Environment)

파이썬 소스 코드 작성, 디버깅(debugging), 실행 등 파이썬 프로그램의 개발에 필요한 모든 환경을 제공

 

#01 설치

https://www.jetbrains.com/

 

JetBrains: Essential tools for software developers and teams

JetBrains is a cutting-edge software vendor specializing in the creation of intelligent development tools, including IntelliJ IDEA – the leading Java IDE, and the Kotlin programming language.

www.jetbrains.com

개발자 도구 - IDEs - Pycharm
무료 버전 'Community' 다운로드
다음
설치 경로
설치 옵션 (모두 체크 권장)
설치 완룡

 

#02 프로젝트 생성

파이참 실행
New Project
프로젝트명 및 경로 설정
파일 생성 (Python File 선택 시 확장자 입력 안해도됨)
.py (파이썬 파일 생성)
실행

 

'Python' 카테고리의 다른 글

Python #12_예외 처리  (0) 2024.05.15
Python #11_파일 입출력 (+ CSV)  (0) 2024.05.15
Python #10_파일 입출력 (+ 슬라이싱 Slicing)  (0) 2024.05.14
Python #09_모듈과 import  (0) 2024.05.10
Python #08_사용자 정의 함수  (0) 2024.05.09