New
How to uninstall a tool installed with `uvx`?
Jan 14, 4:45pm

To uninstall a tool or package installed with uvx, you should use the uv pip uninstall command. This is the recommended approach, as uvx itself is designed to run tools in a temporary environment and does not manage persistent installations directly.

For example, if you want to uninstall a package named black that was installed in your environment, you would run:

bash
uv pip uninstall black

If you want to remove a package from both your project's dependencies and the environment, you can also use:

bash
uv remove <package>

This will update your pyproject.toml and uninstall the package from the environment.

Note: If you used uvx to run a tool in a temporary environment, the package is not permanently installed in your system or project, so no uninstallation is needed unless you explicitly installed it afterward with uv pip install or similar.

Would you like help with a specific package or environment?

Jan 14, 4:45pm

This Chat is read-only. Login to resume chatting.