Hacker News new | ask | show | jobs
by imp0cat 21 days ago
If it feels wrong to use uv to manage dependencies, you don't need to go that far. Start with replacing `pip install` with `uv pip install` for a huge free speed boost.
1 comments

Whoa, yeah, I think I will be switching to this which is much faster, (thanks!):

  uv pip sync requirements.txt
instead of

  python3 -m pip install -r requirements.txt