1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-21 21:42:08 +02:00
tldr/pages.zh/common/uv-tool.md
Jin 2a4ef14253
common/u*: add Chinese translation (#14688)
* common/u*: add Chinese translation

* Update uv-tool.md

* Update ugrep.md
2024-11-19 01:23:02 -08:00

529 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