Zanie Blue

Results 1223 comments of Zanie Blue

Thanks for the comments everyone, they're greatly appreciated. > [I'm not too clear on the distinction between the add/remove and install/uninstall commands. ](https://github.com/astral-sh/uv/issues/3560#issuecomment-2108842339) The idea is that `uv tool add`...

> [The biggest time saver is pipx reinstall it allows me to quickly reinstall after a python interpreter update](https://github.com/astral-sh/uv/issues/3560#issuecomment-2111914978) Yeah I don't specify this command because I'm unsure if it's...

@ekohilas thanks for your comments! (https://github.com/astral-sh/uv/issues/3560#issuecomment-2130784332) > If --latest is needed to force check for a newer version, when is the version checked otherwise? When the cache entry is missing....

As an update here: `uv tool` is available and will be stabilized soon. We've dropped project-level tools from scope for now, that part of the design needs more work as...

Yes there will be. In the meantime, feel free to provide feedback on the [tool guide](https://docs-next.astral.sh/uv/guides/tools/) and [concept](https://docs-next.astral.sh/uv/concepts/tools/) documentation.

We're not planning on tackling development dependency groups in the first stable release of the project APIs; in part, because PEP 735 is not yet accepted. I've created https://github.com/astral-sh/uv/issues/5632 to...

> > Or install a tool that does not match name wise: `uv tool install my.company.namespace.magic` providing the `magic` entry point? > > What about this use case? Installing a...

> IMO, I'd recommend supporting the `pipx.run` entrypoint (with a `uv.tool.run` or similar entry point taking precedence). I am pretty hesitant to support this without a strong, motivating use-case. I...

I'd suggest `uv run --with pyinstaller -- pyinstaller main.py`, which is the intended pattern for running a command with your project installed and an additional dependency. Alternatively, you could do...

First step in https://github.com/astral-sh/uv/pull/3110