Python/IDE, 버전관리, 도커

1. 파이썬(Python) 설치 + IDE(Pycharm 설치)

frcn 2019. 9. 18. 15:29
반응형

빅데이터 및 머신러닝에는 파이썬이 최고 아니겠습니까?

 

파이썬 설치부터 시작해봅시다.

 

1. 파이썬 다운로드

 

https://www.python.org/downloads/

 

Download Python

The official home of the Python Programming Language

www.python.org

여기에서 최신버전으로 설치합시다. 

 

 

2. Path 추가는 꼭 해주시고, Install now를 눌러서 진행합니다.

 

3. 설치가 끝나고, 혹시 저처럼 Disable path length limit 이라는 게 나온다면 눌러서 해제해 줍시다.

 

 

 

4. Pycharm도 다운로드합니다. 

 

https://www.jetbrains.com/pycharm/download/#section=windows

 

Download PyCharm: Python IDE for Professional Developers by JetBrains

Intelligent Python IDE with refactorings, debugger, code completion, on-the-fly code analysis and coding productivity orientation

www.jetbrains.com

 

5. 개인 취향에 맞게 설정해줍시다.

순서대로 바탕화면 아이콘 생성, PATH변수 추가, 실행 시 프로젝트로 폴더열기, .py파일 생성입니다.

 

 

6. 설치가 끝나면 컴퓨터 재시작.

 

 

 

7. 내가 따로 가지고 있는 pycharm 세팅이 없으므로, Do not import Setting을 해주면 설치끝!

 

 

8. 프로젝트 하나 만들고, 파이썬 파일하나를 만들어봅시다.

 

 

 

9. 간단하고 hello python을 입력하고 실행시켜봅시다.

실행 단축기는 alt+shift+F10

코드는 print("hello python")

 

 

 

설치 끝!

반응형