Install¶
Minimal install¶
pip install rex-framework
Use this for manifest validation, storage checks, and package inspection.
Recommended install¶
pip install "rex-framework[pytorch]"
Use this for actual inference workloads.
Optional extras¶
pip install "rex-framework[google-drive]"
pip install "rex-framework[onedrive]"
pip install "rex-framework[bench]"
pip install "rex-framework[all]"
Python support¶
numpyis installed automatically with the package.- The
pytorchextra supports Python3.10through3.13. - PyTorch wheels are not published for Python
3.14. - On some platforms, especially macOS x86_64, Python
3.13may still lack a compatibletorchwheel.
Verify the install¶
python -c "import torch, rex; print(torch.__version__); print(rex.__version__)"