How #23
-
|
How many Large Libraries are available? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
omnipkg doesn't come with any pre-installed libraries (beyond its own minimal dependencies). Instead, it gives you access to the entire PyPI ecosystem - that's over 500,000+ packages, including all large libraries like: TensorFlow (all versions) The key difference: Unlike traditional environments where you can only have ONE version of each package, omnipkg lets you have infinite versions of any package AND infinite Python versions in a single environment. tensorflow==2.13.0, tensorflow==2.15.0, tensorflow==2.20.0 With v1.6.2's Universal Runtime Healing, omnipkg accepts Python code ANY way you throw it at it: Scripts: 8pkg run script.py If ANY of these fail due to missing packages or version conflicts, omnipkg: Auto-detects the error For example, even if your environment is broken (like urllib3 version conflicts breaking httpie), 8pkg run http --version automatically creates an isolated bubble and runs successfully 5.34x faster than the broken bash attempt. |
Beta Was this translation helpful? Give feedback.
omnipkg doesn't come with any pre-installed libraries (beyond its own minimal dependencies). Instead, it gives you access to the entire PyPI ecosystem - that's over 500,000+ packages, including all large libraries like:
TensorFlow (all versions)
PyTorch (all versions)
NumPy, SciPy, Pandas (all versions)
Django, Flask, FastAPI (all versions)
And literally any other package on PyPI
The key difference: Unlike traditional environments where you can only have ONE version of each package, omnipkg lets you have infinite versions of any package AND infinite Python versions in a single environment.
For example, you can simultaneously have:
tensorflow==2.13.0, tensorflow==2.15.0, tensorflow==2.20.0
…