Installation#

Requirements#

  • Python 3.9 or later

  • A Google account (for cloud GPU access)

Install from PyPI#

pip install hyperwave-community

Device Setup#

After installing, configure your compute device before running any simulations:

import hyperwave_community as hwc

hwc.set_device("auto")   # auto-detects GPU/CPU, installs correct JAX

Note

set_device("auto") will automatically detect available hardware and install the appropriate JAX backend (GPU or CPU). Call this once at the start of your script or notebook.

Next Steps#

See the full Quickstart Notebook for a complete walkthrough of your first simulation.