docs/en/run/python/install.mdx
import Feedback from "/snippets/page-feedback.mdx";
The GenieX Python SDK ships as an ARM64 wheel for Windows ARM64 and Linux ARM64.
Confirm Python is the ARM64 build — **must print `ARM64`** (not `AMD64`):
```powershell
python -c "import platform; print(platform.machine())"
```
Create a virtual environment and install:
```powershell
python -m venv geniex-env
.\geniex-env\Scripts\Activate.ps1
pip install -U geniex
```
This pulls the package from [PyPI](https://pypi.org/project/geniex/).
```bash
python3 --version
```
Directly pip install:
```bash
python3 -m pip install -U geniex
```
This pulls the package from [PyPI](https://pypi.org/project/geniex/) and auto-fetches the Linux ARM64 SDK libraries.
<Note>
If Python is not pre-installed, see [How do I install Python on a Linux ARM64 device?](/en/resources/faq#how-do-i-install-python-on-a-linux-arm64-device) for a verified Miniconda recipe (covers Qualcomm Yocto and Ubuntu ARM64).
</Note>
import geniex
print(geniex.version())
Now jump to the Quickstart.
<Feedback/>