mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
528 B
528 B
uv tool
Python 패키지가 제공하는 명령을 설치하고 실행. 더 많은 정보: https://docs.astral.sh/uv/reference/cli/#uv-tool.
- 패키지를 설치하지 않고 명령 실행:
uv tool run {{명령}}
- Python 패키지를 시스템 전역에 설치:
uv tool install {{패키지}}
- 설치된 Python 패키지 업그레이드:
uv tool upgrade {{패키지}}
- Python 패키지 제거:
uv tool uninstall {{패키지}}
- 시스템 전역에 설치된 Python 패키지 나열:
uv tool list