취미와 밥줄사이

[Python] PIP이란? 본문

Python

[Python] PIP이란?

취미와 밥줄사이 2021. 10. 26. 10:43

PIP이란?


  • PIP는 파이썬 패키지 관리를 위한 패키지 매니저
  • 모듈설치를 위한 패키지 매니저
  • 패지키에는 모듈을 위한 파일을 포함하고 있음

PIP 설치확인


pip --version
  • 콘솔 창에 명령어 입력

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

https://pypi.org/

 

PyPI · The Python Package Index

The Python Package Index (PyPI) is a repository of software for the Python programming language.

pypi.org