조금씩 꾸준히 완성을 향해

[Python] 자주쓰는 pip 명령어 정리 본문

Python/기타

[Python] 자주쓰는 pip 명령어 정리

all_sound 2022. 9. 11. 23:07

▶ pip 설치

$ sudo easy_install pip

 

▶ pip 버전 확인

$ pip --version

 

▶ pip 업그레이드

$ pip install pip --upgrade

 

패키지 설치

$ pip install 패키지

 

▶ 특정 버전 패키지 설치

$ pip install "패키지~=3.0.0

 

▶ 설치된 패키지 확인

$ pip freeze

 

설치된 패키지 정보를 requirements.txt 파일로 출력

$ pip freeze > requirements.txt

 

requirements.txt 파일에 있는 모든 패키지를 설치

$ pip install -r requirements.txt