Skip to main content
The GenieX Python SDK ships as an ARM64 wheel for Windows ARM64 and Linux ARM64.

Prerequisites

  • Snapdragon X-series chipset (X Elite or X2 Elite). See Supported platforms.
  • ARM64 Python 3.10+ — x86_64 / AMD64 builds are not supported.

Install via pip

If Python is not installed, download Python 3.13.3 for ARM64.Confirm Python is the ARM64 build — must print ARM64 (not AMD64):
python -c "import platform; print(platform.machine())"
Create a virtual environment and install from test PyPI:
python -m venv geniex-env
.\geniex-env\Scripts\Activate.ps1
pip install -U -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple geniex
This pulls the package from test PyPI.

Verify

import geniex
print(geniex.version())
Now jump to the Quickstart.