본문 바로가기

카테고리 없음

python pip download

SMALL

온라인 pypi

pip config set global.index-url https://pypi.org/simple

 

Simple index

 

pypi.org

오프라인 pypi

pip config set global.index-url http://localhost:8081/repository/pypi-hosted/simple

 

패키지삭제

pip uninstall my_local_package

캐싱된 PyPI 패키지 확인 및 정리
의존성 설치 중간에 경로 패키지가 추가되지 않도록 캐시를 정리:

pip cache purge
 
 
pip 리스트 작성

       pip freeze > requirements.txt

 

패키지 다운로드:
       pip download -r requirements.txt -d ./offline-packages
오프라인 설치:
pip install --no-index --find-links=<디렉토리> <패키지이름>
       pip install --no-index --find-links=./offline-packages -r requirements.txt
 
  • --no-index: PyPI를 검색하지 않도록 설정.
  • --find-links=<디렉토리>: 로컬 디렉토리에서 패키지를 찾도록 설정.

 

온라인 설치:

 

    pip install -r requirements.txt

 

패키지 업로드

 twine upload dist/*

LIST