diff --git a/autogalaxy/__init__.py b/autogalaxy/__init__.py index adaf8583..8f9fd4ef 100644 --- a/autogalaxy/__init__.py +++ b/autogalaxy/__init__.py @@ -128,7 +128,7 @@ from autonerves.fitsable import output_to_fits from autonerves.fitsable import hdu_list_for_output_from -__version__ = "2026.7.9.1" +__version__ = "2026.7.23.1" from autonerves import check_version diff --git a/docs/installation/conda.md b/docs/installation/conda.md index 506a3e83..b6bb0157 100644 --- a/docs/installation/conda.md +++ b/docs/installation/conda.md @@ -37,9 +37,15 @@ The latest version of **PyAutoGalaxy** is installed via pip as follows (the comm caching issues impacting the installation): ```bash -pip install autogalaxy --no-cache-dir +pip install autogalaxy[jax] --no-cache-dir ``` +The `[jax]` extra installs \[**JAX**\](), which +**PyAutoGalaxy** uses for just-in-time compilation and GPU acceleration. **JAX is not installed by default** — to +install without it, use `pip install autogalaxy --no-cache-dir` instead. The extra installs CPU-only JAX; for GPU +support, follow the official \[JAX installation guide\]() +**before** installing. + If pip prints warnings about dependency version conflicts, these can usually be ignored — the instructions below will identify clearly if the installation is a success. diff --git a/docs/installation/pip.md b/docs/installation/pip.md index 548bc1ff..498b8e32 100644 --- a/docs/installation/pip.md +++ b/docs/installation/pip.md @@ -24,9 +24,15 @@ The latest version of **PyAutoGalaxy** is installed via pip as follows (specifyi the installation has clean dependencies): ```bash -pip install autogalaxy +pip install autogalaxy[jax] ``` +The `[jax]` extra installs \[**JAX**\](), which +**PyAutoGalaxy** uses for just-in-time compilation and GPU acceleration. **JAX is not installed by default** — a +plain `pip install autogalaxy` gives a fully working install that runs on NumPy, without JAX acceleration. The +extra installs CPU-only JAX; for GPU support, follow the official +\[JAX installation guide\]() **before** installing. + If pip prints warnings about dependency version conflicts, these can usually be ignored — the instructions below will identify clearly if the installation is a success.