Gary' Blog

Gary' Blog

Gary's Technical Blog

马上订阅 Gary' Blog RSS 更新: https://garymeng.com/feed/

Migrate pip to uv

Gary
2025年5月29日 13:57
TechnicalpipPythonuv
uv is a super fast dependency resolver. Assume now your have: .venv: the virtual environment directory requirements.txt: the dependency list file It is easy to migrate from pip to uv with following commands. uv venv .venv source .venv/bin/activate uv init uv add -r requirements.txt