1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/pip-uninstall.md

17 lines
333 B
Markdown
Raw Normal View History

# pip uninstall
> Python 패키지 제거.
> 더 많은 정보: <https://pip.pypa.io>.
- 패키지 제거:
`pip uninstall {{패키지}}`
- 특정 파일에 나열된 패키지 제거:
`pip uninstall --requirement {{경로/대상/requirements.txt}}`
- 확인 요청 없이 패키지 제거:
`pip uninstall --yes {{패키지}}`