uvpipx is a lightweight tool similar to pipx, using uv behind the scenes, offering enhanced speed and efficiency. It's designed to install and run Python applications in isolated environments, ensuring that your global Python setup remains clean and uncluttered.
- π Fast and lightweight: Leverages uv for rapid installations
- π¦ Containerization-friendly: Ideal for containers and CI environments
- π Minimal dependencies: Only requires uv, reducing potential conflicts
- π Environment preservation: Keeps your global Python setup clean
- πͺ Cross-platform: Supports Windows and Unix-based systems
uvpipx solves the common problem of installing Python applications without affecting your system-wide Python setup. It creates isolated environments for each application, allowing you to:
- Isolation: Install CLI tools without dependency conflicts
- Easy management: Add or remove applications without affecting others
- Experimentation: Test different versions of the same tool safely
- Speed: Significantly faster than traditional methods, especially in CI/CD pipelines
To get started with uvpipx, simply install it using pip:
pip install uvpipxUse the install command to add a new package:
uvpipx install <package_name>Example:
uvpipx install jcThis command creates a new virtual environment and installs the specified package along with its dependencies.
After installation, ensure that the uvpipx bin directory is in your PATH:
uvpipx ensurepathThis command helps you set up your environment correctly to use installed applications.
You can run the program directly from the command line:
echo "Hello World!" | wc | jc --wcReturn:
[{"filename":null,"lines":1,"words":2,"characters":13}]You can install additional programs alongside the main package:
uvpipx install <package_name> --inject <program_name>Example:
uvpipx install jc --inject artThis feature is useful when you need complementary tools in the same environment.
To see what you've installed with uvpipx:
uvpipx listThis provides an overview of all packages managed by uvpipx.
Remove a package and its isolated environment:
uvpipx uninstall <package_name>This command completely removes the package and its dedicated environment.
For details about an installed package:
uvpipx info <package_name>To get the virtual environment path:
uvpipx info <package_name> --get-venvThis is useful for debugging or when you need to interact directly with the virtual environment.
By default programs are exposed (look below for more detail). So you can run them directly from the command line.
But you want advanced control or run side program not exposed by uvpipx. You can execute a command in a package's isolated environment:
uvpipx venv <package_name> -- <command>Example:
wc README.md | uvpipx venv jc -- jc --wcThis allows you to use the installed tools without activating the virtual environment manually.
Exposure rules determine which programs from the venv are made available in your PATH:
__main__: exposes all programs from the main package__eponym__: exposes only the program with the same name as the package__all__: exposes all programs in the venv (except python and pip)- A list of specific program names
Change the exposure rule:
uvpipx expose <package_name> <rule>Example:
uvpipx expose jc __main__In previous versions, uvpipx exposed programs by default with the __all__ rule. Now, the default rule is __main__. This is a significant change but is more consistent with pipx behavior. To update all your existing venvs to the new rule:
uvpipx expose-all __main__You can still install with the __all__ rule if desired:
uvpipx install <package_name> --expose __all__These exposure options give you fine-grained control over which tools are accessible from each installed package.
uvpipx can significantly speed up container builds and CI processes. Here's a comparison of installation times for poetry:
| Tool | Time | Total Time | Difference |
|---|---|---|---|
| Uvpipx | 2.8 (uvpipx) + 1.1 (poetry) | 3.9 seconds | reference |
| Pip | 8.8 | 8.8 seconds | +4.9 seconds |
As shown, uvpipx can offer significant time savings, especially in scenarios where multiple tools need to be installed quickly, such as in CI/CD pipelines or container builds.
For more detailed information, advanced usage, and troubleshooting, visit the uvpipx GitLab page.
Contributions, suggestions, and bug reports are welcome. Please fill an issue on the GitLab repository.
uvpipx is open-source software. Please see the LICENSE file in the repository for more details.
OH OH


