rust开发的 python包管理工具 https://github.com/astral-sh/uv

天问 eb46350c35 Update 'README.md' 5 days ago
README.md eb46350c35 Update 'README.md' 5 days ago

README.md

uv

rust开发的 python包管理工具,速度超快, mcp 服务器一般都是uv安装。 其他工具: virtualvenv, poetry, pyenv

Usage

curl -LsSf https://astral.sh/uv/install.sh | sh
source $HOME/.cargo/env
# pip install uv

uv venv

# 创建项目
uv init demo
uv add requests

uv pip install flask  
uv pip install -r requirements.txt

uv run main.py

# 格式化代码
uv format

uv python 

uv build 

uv publish


License

Licensed under the Apache 2.0 © liuyuqi.gov@msn.cn