Run infinite Python packages & interpreters concurrently in one container in milliseconds.
10K+
Break the fundamental laws of Python environments. Run infinite Python versions, package combinations, and PyTorch ABIs simultaneously in one container. Built for high-performance ML infrastructure and CI/CD.
# Latest stable (Debian-based, most compatible)
docker pull 1minds3t/omnipkg:latest
# Run interactive shell
docker run -it 1minds3t/omnipkg:latest
# Try the famous Daemon IPC Showcase (True Zero-Copy GPU)
docker run -it 1minds3t/omnipkg:latest omnipkg demo 11
The "One Image" CI/CD Matrix:
Stop building and caching separate 2GB Docker images for python3.9, python3.11, and python3.12. Pull one omnipkg image, and let the C-dispatcher hot-swap the Python interpreter and dependency trees in <180ms.
Production-Grade Performance:
uv and 3x faster than bun before Python even wakes up.ctypes VRAM-to-VRAM GPU transfers. Pass a 4MB tensor through 3 PyTorch versions in 4.5ms (1,107ร faster than standard multiprocessing).uv install plans to perform atomic os.rename() directory swaps in <1ms.Multi-Version Concurrency:
torch==1.13.1+cu116 and torch==2.2.0+cu121) in the same environment, and execute them concurrently without data leaving VRAM.| Operation | omnipkg | Traditional | Speedup |
|---|---|---|---|
| CLI Startup (8pkg --help) | 237 ยตs | 4,100 ยตs (uv) | 17ร |
| GPU IPC Pipeline (3 PyTorch ABIs) | 4.52 ms | 5,003 ms | 1,107ร |
| Concurrent 3-Python Execution | 17.9 ms | 4,906 ms | 274ร |
| Python Version Swap | <180 ms | minutes (new container) | Instant |
| Auto-Heal Broken CLI Tool | 12.4 ms | minutes (manual debug) | Instant |
Benchmarks validated live via omnipkg stress-test and omnipkg demo 11.
3.4.x โ Latest release versions3.4.x-debian, 3.4.x-alpine โ Version + base OSlatest, debian โ Most compatible (glibc)slim, alpine โ Minimal footprint, musl libc (~50MB)ubuntu-20.04, ubuntu-22.04, ubuntu-24.04fedora โ RHEL/Fedora-basedcuda, gpu โ NVIDIA GPU support (Universal CUDA IPC + Torch MP Queue fallback built-in)dev โ Development tools includedโ
linux/amd64 (x86_64)
โ
linux/arm64 (aarch64)
Docker automatically pulls the correct architecture for your platform.
Instead of a giant GitHub Actions matrix spawning 5 containers, run one:
docker run --rm 1minds3t/omnipkg:latest bash -c "
8pkg39 run pytest && \
8pkg311 run pytest && \
8pkg313 run pytest"
docker run --gpus all -it 1minds3t/omnipkg:cuda bash
If an upstream deployment breaks a dependency, omnipkg run detects the ImportError or ABI crash, finds the correct bubbled version, and executes it anyway.
docker run --rm -v $(pwd):/app 1minds3t/omnipkg:alpine 8pkg run /app/script.py
from omnipkg.isolation.worker_daemon import DaemonClient
client = DaemonClient()
# Execute code in PyTorch 2.0.1 (Worker 1)
client.execute_smart("torch==2.0.1+cu118", """
import torch
print(f"Running on {torch.cuda.get_device_name(0)} with Torch {torch.__version__}")
""")
# Instantly switch to PyTorch 2.2.0 (Worker 2, shared VRAM)
client.execute_smart("torch==2.2.0+cu121", "import torch; print(torch.__version__)")
OMNIPKG_HOME=/home/omnipkg โ User home directoryOMNIPKG_NONINTERACTIVE=1 โ Disables all prompts for CI/CD environmentsOMNIPKG_LANG=es โ Set CLI language (supports 24+ languages)Bugs or feature requests? Open an issue on GitHub or contact: [email protected]โ
Dual-licensed: AGPLv3 (open source) / Commercial (enterprise)
Stop fighting dependency hell. Start shipping production ML infrastructure.
Content type
Image
Digest
sha256:4ea06d141โฆ
Size
1 GB
Last updated
about 1 month ago
docker pull 1minds3t/omnipkg:3.4.1-science