취미와 밥줄사이
[Python] PIP이란? 본문
PIP이란?
- PIP는 파이썬 패키지 관리를 위한 패키지 매니저
- 모듈설치를 위한 패키지 매니저
- 패지키에는 모듈을 위한 파일을 포함하고 있음
PIP 설치확인
pip --version
- 콘솔 창에 명령어 입력
PIP 설치
- pip가 설치되어 있지 않다면
- https://pypi.org/project/pip/
pip
The PyPA recommended tool for installing Python packages.
pypi.org
- 설치하기
파이썬 패키지 설치 방법
- command line interface에 설치 명령어 입력
-
pip install [패키지 이름]
파이썬 패지키 삭제 방법
pip uninstall [패키지 이름]
설치 패키지 확인 방법
- list 명령어
-
pip list
REFERENCE
https://www.w3schools.com/python/python_pip.asp
Python PIP
W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.
www.w3schools.com
PyPI · The Python Package Index
The Python Package Index (PyPI) is a repository of software for the Python programming language.
pypi.org
'Python' 카테고리의 다른 글
[Python] 문자열 Formatting (0) | 2021.10.26 |
---|---|
[Python] JSON 자료형 다루기 (0) | 2021.10.26 |
[Anaconda ] - cmd창에서 사용하기 (0) | 2021.03.30 |
[MySQL] - MySQL 라이브러리 (설치방법, 임포트 방법 등) (0) | 2021.03.18 |
구글드라이브에 csv파일 업로드시 googlesheet로 자동변환되는 문제 해결방법! (0) | 2021.03.17 |