Install the SDK

Aether ships as a Python wheel built for a specific interpreter ABI and platform (for example Linux x86_64 and CPython 3.13).

Requirements

  • Python 3.13+
  • A wheel built for your interpreter and platform. Published Linux x86_64 artifacts follow this pattern:

aether-<version>-cp313-cp313-linux_x86_64.whl

The filename encodes the package version and ABI (for example cp313). Use the wheel that matches your Python version and operating system.

pip

pip install /path/to/aether-0.1.0-cp313-cp313-linux_x86_64.whl

uv

uv pip install /path/to/aether-0.1.0-cp313-cp313-linux_x86_64.whl

Verify

After install, you should be able to import the package namespaces used in the integrator guides (for example aether.nexus, aether.sigil, aether.weave). Installing the wheel does not require a license JWT; you need one when you run Nexus and call start()—see Overview — Licensing and Nexus, Sigils, and Weaves.

Next steps