1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:42:07 +02:00
tldr/pages.ko/common/pip-install.md
코드싸이 2317407751
common/p*: add Korean translation (#14663)
* common/p*: add Korean translation

* Update pages.ko/common/perldoc.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/common/pcdovtoppm.md

Co-authored-by: Chooooo <contact@choo.ooo>

---------

Co-authored-by: Chooooo <contact@choo.ooo>
2024-11-07 14:54:05 +09:00

572 B

pip install

Python 패키지 설치. 더 많은 정보: https://pip.pypa.io.

  • 패키지 설치:

pip install {{패키지}}

  • 특정 버전의 패키지 설치:

pip install {{패키지}}=={{버전}}

  • 파일에 나열된 패키지 설치:

pip install -r {{경로/대상/requirements.txt}}

  • URL 또는 로컬 파일 아카이브(.tar.gz | .whl)에서 패키지 설치:

pip install --find-links {{url|경로/대상/파일}}

  • 현재 디렉토리에 있는 로컬 패키지를 개발(수정 가능) 모드로 설치:

pip install --editable {{.}}