파이썬(Python) pip 패키지 버전/업그레이드/설치여부 확인

반응형

* pip : python 2 버전
* pip3 : python 3 버전


pip 버전 및 설치 여부 확인

기본적으로 python 설치 시 기본 패키지로 포함되어 있음

> python -V   // 파이썬 버전
Python 3.11.5

> pip -V 또는 pip --version   // pip 버전
pip 23.2.1 from E:\Python311\Lib\site-packages\pip (python 3.11)



pip 업그레이드 방법

아래는 23.2.1에서 23.3.1 버전으로 업그레이드된 과정이다.

> python -m pip install --upgrade pip
Requirement already satisfied: pip in e:\python311\lib\site-packages (23.2.1)
Collecting pip
  Obtaining dependency information for pip from https://files.pythonhosted.org/packages/47/6a/453160888fab7c6a432a6e25f8afe6256d0d9f2cbd25971021da6491d899/pip-23.3.1-py3-none-any.whl.metadata
  Using cached pip-23.3.1-py3-none-any.whl.metadata (3.5 kB)
Using cached pip-23.3.1-py3-none-any.whl (2.1 MB)
Installing collected packages: pip
  Attempting uninstall: pip
    Found existing installation: pip 23.2.1
    Uninstalling pip-23.2.1:
      Successfully uninstalled pip-23.2.1
Successfully installed pip-23.3.1

 

반응형

댓글

Designed by JB FACTORY