Developer_hong

Python IDE 본문

프로그래밍/Python

Python IDE

Developer_hong 2020. 7. 10. 15:33
반응형

오늘 파이썬 언어 습득을 시작했다

파이썬 코딩을 위한 IDE를 설치한다

 

* 디렉토리 & 인터프리터 세팅은 MAC OS 기준

 

pycharm 설치 : 커뮤니티 무료 버전

https://www.jetbrains.com/ko-kr/pycharm/download/#section=mac

 

다운로드 PyCharm: JetBrains가 만든 전문 개발자용 Python IDE

최신 버전 다운로드: PyCharm (Windows, macOS, Linux)

www.jetbrains.com

 


1. 설치 완료

 

2. 프로잭트 생성 또는 Import

 

3.Pycharm - 설정(Preference) - Project:(project_name) - Project Interpreter

  Pycharm에서 인터프리터를 설정해준다

  인터프리터를 잘못 지정해주면 Mac 터미널에서 PIP를 이용하여 설치한 모듈들이랑 

  Pycharm IDE 에서 작업중인 Project 모듈이랑 따로 놀게된다.

 

3-1.

맥 터미널 실행

-> Mac Terminal $ : python --version

-> Python 2.7.16

또는 

-> Mac Terminal $ : python3 --version

-> Python 3.7.3

 

필자의 경우 3버전 사용 예정이므로

Project Interpreter : <No interpreter> 옆의 톱니바퀴 클릭하여 add

-> System Interpreter 선택

-> InterPreter : /usr/bin/python3 선택

 

코딩 시작

반응형

'프로그래밍 > Python' 카테고리의 다른 글

스크린샷 저장 Chrome, Firefox  (1) 2020.10.22
Python - Mac Terminal  (0) 2020.07.10