Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion autofit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def save_abc(pickler, obj):
pickle._Pickler.save_type(pickler, obj)


__version__ = "2026.7.9.1"
__version__ = "2026.7.23.1"

from autonerves import check_version

Expand Down
8 changes: 7 additions & 1 deletion docs/installation/conda.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,15 @@ The latest version of **PyAutoFit** is installed via pip as follows (specifying
the installation has clean dependencies):

```bash
pip install autofit
pip install autofit[jax]
```

The `[jax]` extra installs \[**JAX**\](<https://docs.jax.dev/en/latest/notebooks/thinking_in_jax.html>) (and
`optax`), which **PyAutoFit** uses for gradient-based searches and GPU acceleration. **JAX is not installed by
default** — to install without it, use `pip install autofit` instead. The extra installs CPU-only JAX; for GPU
support, follow the official \[JAX installation guide\](<https://jax.readthedocs.io/en/latest/installation.html>)
**before** installing.

Next, clone the `autofit_workspace` (the line `--depth 1` clones only the most recent branch on
the `autofit_workspace`, reducing the download size):

Expand Down
8 changes: 7 additions & 1 deletion docs/installation/pip.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,15 @@ The latest version of **PyAutoFit** is installed via pip as follows (specifying
the installation has clean dependencies):

```bash
pip install autofit
pip install autofit[jax]
```

The `[jax]` extra installs \[**JAX**\](<https://docs.jax.dev/en/latest/notebooks/thinking_in_jax.html>) (and
`optax`), which **PyAutoFit** uses for gradient-based searches and GPU acceleration. **JAX is not installed by
default** — a plain `pip install autofit` 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\](<https://jax.readthedocs.io/en/latest/installation.html>) **before** installing.

If this raises no errors **PyAutoFit** is installed! If there is an error check out
the [troubleshooting section](https://pyautofit.readthedocs.io/en/latest/installation/troubleshooting.html).

Expand Down
Loading