Hacker News new | ask | show | jobs
by vindex10 227 days ago
some packages that I use for development need to be part of the virtual env. for example ipdb.

so i do uv pip install ipdb.

but then, after uv add somepackage

uv sync happens and cleans up all extras. to keep extras, you need to run uv sync --inexact. But there is no env var for `--inexact`, so I end up doing the sync manually.

1 comments