Elektrine lite

← Feed

@al3x@hachyderm.io

Post #2724561

2026-05-01 11:07 UTC

@tastapod@mas.to Do you happen to have something to read first? (Link, your notes, anything). It might be a “collision” of perspectives

Replies (1)

  • @tastapod@mas.to 2026-05-01 12:44

    @al3x@hachyderm.io tl;dr: - use uv for everything: uv init, migrate existing e.g. pipfile, poetry, whatever into a uv-driven project.toml (uv helps with this) as a one-time exercise - don't forget to `source bin/activate` your venv otherwise you are using the wrong python (true for any venv) - use uv for deps (uv add x rather than pip install x) if you want it to also end up in your project.toml - use uv-native commands (uvx over pipx, uv pip blah over pip blah, etc.). These quickly become muscle memory

    Open ##2724562