Installation
Quick Install
Install Ranex from PyPI using pip:
pip install ranexView the package on PyPI
Supported environments
- Python: Ranex is built and tested in CI with Python 3.12. Release artifacts may support additional Python versions depending on the published wheels.
- Platforms: Wheels are built for Linux, macOS, and Windows targets. If
pipcannot find a compatible wheel for your environment, installation may fall back to a source build.
Install (recommended)
- Create and activate a virtual environment.
- Install Ranex.
Commands:
Create venv
python -m venv .venv
source .venv/bin/activate # Linux/macOS
.venv\Scripts\activate # Windows PowerShellInstall
pip install --upgrade pip
pip install ranexVerify
- CLI version:
ranex version - Python import (optional):
python -c "import ranex; print(ranex.__version__)"
Upgrade
pip install --upgrade ranexUninstall
pip uninstall ranexIf installation fails
Common causes:
- No compatible wheel for your Python/OS
- Upgrade
pip. - Try a newer Python version.
- Upgrade
- Building from source fails
- A source build requires a Rust toolchain and Python development headers.
- If you do not want to build from source, use an environment where a prebuilt wheel exists.