- pip 기본 repository : PYPI
- PYPI 를 제외한 설치 방법
. Github, Mercurial, Subversion 및 Bazaar와 같은 버전 제어 시스템.
. requirements.txt
. Distribution files. These are versioned, ready-to install files containing Python packages, modules, and other resource files necessary for a package to function. They come in two forms:
Source distribution (usually shortened to “sdist”)
Wheel distribution (usually shortened to “wheel”)
- pip vs pip3 vs pip2
pip2 는 python2 를 찾아서 동작, pip3 는 python3 를 찾아서 동작, pip 는 적절한 context 로 알아서 python 버전으로 동작
- pip 커멘드 정리
>>pip install pandas==1.4.0
>>pip install pandas>=1.0.0,<1.5.0
>>pip install -r requirements.txt
>>pip freeze > requirements.txt
>>pip install git+https://github.com/pypa/sampleproject.git@main
>>pip install --upgrade pandas
>>pip uninstall pandas
>>pip help
>>pip list
>>pip show [NameOfPackage]
'프로그래밍 (이동 완료) > Python' 카테고리의 다른 글
파이썬 - import가 module과 package 를 찾아가는 경로 (0) | 2023.07.26 |
---|---|
Python Package Management History (0) | 2023.06.08 |
파이썬 버전 매니저 - pyenv (0) | 2023.06.01 |
파이썬 docstring (0) | 2023.05.20 |
파이썬 가상 환경 정리 (0) | 2023.05.18 |