What problem does it solve?
This Skill provides a comprehensive solution for managing Python packages, eliminating duplication, and optimizing runtime performance, saving users valuable time and resources.
Core Features & Use Cases
- Zero Duplication: Packages stored once in a global cache, shared across all projects.
- Instant Runtimes: Instantly create isolated runtimes using symlinks to the global cache.
- Multi-Python Support: Seamlessly switch between Python versions with no configuration.
- Portable Lockfiles: Move projects between machines with ease.
- CI/CD Ready: Export and import runtimes for easy deployment.
- Workspace Support: Manage monorepo workspaces efficiently.
- Parallel Downloads: Leverages UV's fast download system for speed.
- Disk-Space Efficient: Global cache reduces storage duplication.
- Installable: Easy installation via
pip or curl.
- Cross-Platform: Supports macOS, Linux, and Windows.
- Use Case: Imagine you have a large project with complex dependencies. Use GVX to manage your dependencies, switch between Python versions, and build a portable runtime for deployment.
Quick Start
Install GVX: pip install gvx
Initialize a project: gvx init
Add packages: gvx add flask requests httpx
Build runtime: gvx sync
Run with isolated environment: gvx run -- python script.py