반응형
1. Python Setup Ver 확인
1-1. Windows(명령 프롬프트)
python --version
1-2. Mac(터미널)
python3 --version
2. Python Site
2-1. Python 공식 사이트 : https://www.python.org/
2-2. Python Code 확인 : http://pythontutor.com/
3. Python Setup Option
3-1. Install launcher for all users / Add Python 3.7 to PATH
4. Python Run
4-1. Windows(명령 프롬프트)
python
4-2. MAC(터미널)
python3
5. Python extension
.py
6. Python Code Run
6-1. Windows(명령 프롬프트)
python 파이썬파일명.py
6-2. MAC(터미널
python3 파이썬파일명.py
7. IDE(Integrated Development Environment)
7-1. PyCharm : https://www.jetbrains.com/pycharm
7-2. Atom : https://atom.io
7-3. Braket : https://bracket.io
7-4. Visual Studio Code : https://code.visualstudio.com
7-5. Notepad++ : https://notepad-plus-plus.org
반응형
'Python_Beginer > Study' 카테고리의 다른 글
PyCharm Community Edition Setup (0) | 2019.04.23 |
---|---|
Python Basic Setup (0) | 2019.04.23 |
Python - Class1 ~ 3까지의 첨부파일을 읽어들여서 한 파일로 만들기(부제. 평균) (0) | 2019.03.02 |
CSV를 2차원 인덱스로 만들어서 DATA 분석 (0) | 2019.03.02 |
인터뷰 문제>FizzBuzz 출력하기 (0) | 2019.02.28 |