Programing/python

파이썬 개발환경 설정을 위해 필요한 항목들에 대해서

Ezzi 2023. 2. 26. 14:07
반응형

 
파이썬은 매우 인기 있는 프로그래밍 언어 중 하나이며, 다양한 운영체제에서 사용할 수 있습니다. 이제 파이썬 개발 환경을 설정하는 방법을 알아보겠습니다.
 
1.   파이썬 설치
파이썬을 사용하려면 먼저 파이썬을 설치해야 합니다. 파이썬 공식 웹사이트에서 파이썬 다운로드 페이지로 이동하여 운영 체제에 맞는 버전을 다운로드하고 설치합니다.  
https://www.python.org/

Welcome to Python.org

The official home of the Python Programming Language

www.python.org

 
2.  텍스트 에디터 또는 IDE 선택
텍스트 에디터 또는 IDE (Integrated Development Environment)를 선택하여 파이썬 코드를 작성할 수 있습니다. 인기 있는 IDE에는 PyCharm, Visual Studio Code, Sublime Text 등이 있습니다.
https://code.visualstudio.com/

Visual Studio Code - Code Editing. Redefined

Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications.  Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.

code.visualstudio.com

 
3.  가상 환경 설정 (선택 사항)
가상 환경을 설정하면 여러 프로젝트를 동시에 관리할 수 있으며, 다른 버전의 패키지를 사용할 수 있습니다. 가상 환경을 설정하려면, venv 모듈을 사용하여 가상 환경을 만들 수 있습니다.
https://docs.python.org/ko/3/library/venv.html

venv — Creation of virtual environments

Source code: Lib/venv/ The venv module supports creating lightweight “virtual environments”, each with their own independent set of Python packages installed in their site directories. A virtual en...

docs.python.org

https://pypi.org/project/pip/

pip

The PyPA recommended tool for installing Python packages.

pypi.org

필요한 패키지 설치
원하는 패키지를 설치하려면, pip 명령어를 사용합니다. 예를 들어, pip install numpy 명령어를 사용하여 numpy 패키지를 설치할 수 있습니다.

반응형

'Programing > python' 카테고리의 다른 글

파이썬 자료형  (0) 2023.02.26
파이썬 변수(Variable)  (0) 2023.02.26
파이썬 커리큘럼  (0) 2023.02.26
[python] country code 가지고 오기  (0) 2021.05.11
python 외부 ip 주소 가지고 오기  (0) 2021.05.11