1. Downloading and Installation

The latest release version of Larch is 2026.1.0. Larch is in active and continuing development. We do not use a strict schedule, but for the past few years, new versions have typically been released every 3 or 4 months. See _Larch Releases (github.com) for details.

There are three ways to install Larch.

  1. Installing with Binary Installers. Recommended to get started with Larix or other Larch GUI applications.

  2. Installing with the GetLarch.sh and GetLarch.bat scripts. Use these if your comfortable with the command-line or want to customize your installation.

  3. Installing into an existing Anaconda Python environment. Use this if you already have an Anaconda Python environment that you want to use.

Each of these will install a complete Python environment with all the packages needed to use the GUI applications or use Larch as a Python libray. There will not be significant difference in the resulting code or packages from using these different methods.

Installation does not normally require administrative privilege and should not interfere with any thing else on your system such as the system-installed Python, or a Windows registry. The binary and script installers will create 3 folders in the users home folder, owned by that user:

  • a folder called xraylarch with the Anaconda Python code and packages. Where this goes exactly depends slightly on the OS – see notes below for details.

  • a folder called larch (Windows) or .larch (macOS, Linux) in the Users home folder with data files created or used by Larch applications, including Session files and Feff calculations.

  • a folder called Larch on the Desktop, with Desktop shortcuts to launch the GUI Applications.

Table of Larch Installers

Installers for Windows, macOSX, and Linux are available at Larch Installers. The binary installers are fairly large. While the shell installers are small text files, they will download the necessary packages that come bundled in the binary installer. These installers will also download and install more libraries from Python packaging web resources.

Operating System

Binary Installer File

Shell Installer

Installation Notes

Windows (64 bit)

Larch for Windows

GetLarch.bat

Notes

macOSX (64 bit)

Larch for MacOSX

GetLarch.sh

Notes

Linux (64 bit)

Larch for Linux

GetLarch.sh

Notes

1.1. Installing with Binary Installers

To use he binary installers, download the installer from the table above, and run the installer.

Note

There can be no spaces in the path in which Larch is installed. (to be clear, this is common to other Python environments).

If you have a space in your user name, you must install to a different location. Using C:\Users\Public has worked for many people.

1.2. Installing with the GetLarch.sh and GetLarch.bat scripts

This method is recommended on Linux, and for those who are relatively comfortable using a command-line, and can be helpful for debugging cases where the binary installer has failed. The script Basically follows the steps that the binary installer follow, but is likely to give more useful error messages if something goes wrong. To install with this method, download and execute one of the following:

Open a Shell or Terminal, find the location of this script and run that. On Windows, that would be launching the cmd program, and doing something like:

cd C:\Users\<YOURNAME>\Downloads
GetLarch

On macOS on Linux, open a Terminal (from Applications->Utilities->Terminal on macOS), and then type:

cd Downloads
sh GetLarch.sh

If this script fails, report it to the Larch Github Issues (including the error trace and the GetLarch.log file).

The scripts will download and install Miniconda Python which uses Anaconda Python and the conda-forge channel as the basis of an installation that will be essentially identical to the environment installed by the binary installers, that is, the whole environment is stored in a folder called xraylarch in your home folder. In case of problems, simply remove this folder to clean the installation.

1.2.1. Windows Notes

For Windows, download the Larch for Windows installer above and run it to install Larch. This will be installed to C:\Users\<YourName>\xraylarch for most individual Windows installations or to C:\Users\<YourName>\AppData\Local\xraylarch if your machine is part of a Windows Workgroup or Domain. As mentioned above, if your user name has a space in it, you will probably need to install to C:\Users\Public.

Alternatively you can download the GetLarch.bat script, and run that by double-clicking on it. This will download, install, and configure the Larch package, with a result that should be identical to the Installer script.

1.2.2. MacOS Notes

For MacOS, download the Larch for MacOSX package installer above and click it to install Larch. There are two important notes:

Note

MacOS will not install non-signed 3rd party packages by default. You may need to go into General Settings part of the Security & Privacy section of System Preferences and explicitly allow this package to be installed. You probably will be prompted for an Administrative password.

Note

You need to explicitly click on “Install only for me” during the installation process. If you get prompted for an Administrative password by the installer, go back and explicitly choose “Install only for me”.

Note

After clicking through the options, the package installer will start installing and quickly get a point where it says the installation has about one minute remaining. This appears to be an optimistic estimate for about ten minutes. ;)

Alternatively you can download the GetLarch.sh script, and run that in a Terminal session (Applications->Utilities->Terminal). This will download, install, and configure the Larch package, with a result that is nearly identical to the package installer. If you run into any problems with permissions or administrative privileges or “unauthorized application” with the package installer, running this installer script actually avoids all of those issues since your user account will simply be running the commands to write files to your home directory.

1.2.3. Linux Notes

For Linux, use the GetLarch.sh script and run that in a Terminal session.

Desktop shortcuts as .desktop files will be created on all Linux platforms, but whether these actually appear on your desktop depends on the Windowing system used: they will appear on the desktop with KDE and many other systems, but not with Gnome. Clickable icons should also show up in the Applications selection of the “Start Menu” or Applications list.

1.3. Installing into an existing Anaconda Python environment

If are already using an existing Anaconda Python, you may want to install Larch into that environment or create a new environment for it. Larch uses many of the common “scipy ecosystem” packages. The main must-have packages are numpy, scipy, matplotlib, and h5py. In addition, the following extra packages that you may need include:

  • wxpython: needed for all plotting, graphics and GUI applications.

  • pymatgen: needed for handling CIF files to generate Feff input files.

  • openbabel: needed for converting some structure files to Feff input files.

  • scikit-learn: needed for advanced regression methods.

  • tomopy: needed only for reconstructing X-ray fluorescence tomography.

To be clear, much of the core Larch functionality can be used without these packages as a library. But wxpython and pymatgen are heavily used and should be installed.

To create a dedicated environment for Larch, can either use the conda-forge package or try something like this to first create a dedicated “scipy ecosystem” infrastructure and then install xraylarch with pip:

conda create -y --name xraylarch python>=3.13.9
conda activate xraylarch
conda install -y -c conda-forge numpy scipy matplotlib h5py>=3.10 wxpython>=4.2.2 mkl_fft
pip install "xraylarch[larix]"

Optionally, you can add other packages with

conda install -y -c conda-forge openbabel tomopy  # <- optional packages

Many of the packages needed can be installed either as Anaconda packages, or as plain Python packages from PyPI, and with the pip command. Since the PyPI packages are the main release package, this method may better ensure that you get the latest version compared to installing the conda-forge package.

1.3.1. Conda, Conda-forge, and Pip

Most of the Python packages that Larch uses can be obtained either from PyPi with the pip command, or with conda packages. Anaconda typically recommends using conda packages whenever possible, but we find this to be generally unnecessary, This is especially true as many Python packages are available only from the large, community-based conda-forge site, where there can be a wide range of reliability. For packages that do not bundle binary libraries or build binary extensions at installtion time, the case for needing conda packages is not very strong.

For reference, the installers will grab Python itself, numpy, scipy, matplotlib, h5py, and wxPython from the conda-forge site, and all other packages from PyPI. We recommend you follow a similar process.

Table of Packages needed from conda-forge

These Python packages are best installed from Conda-forge (or an OS-specific packaging system), and not from Pip.

Package name

Use

Source

Platforms

wxPython

All Plotting, Larix

conda-forge

Linux Only

mkl_fft

math, FFTs

conda-forge

All

tomopy

XRF tomography

conda-forge

All

openbabel

Structures -> Feff

conda-forge

All

1.4. Installing with pip into an existing Python environment

Larch relies on the “scipy ecosystem”, and has a large number of packages that it depends on. Most of these are available as binary (so-called “wheel” files) from PyPI, so that a simple

pip install xraylarch

should work, but will install a fairly bare-bones set of tools – the basic xraylarch library, without requiring the packages needed to make any of the GUIs work. In order to get the GUI-needed package, you could install with

pip install "xraylarch[larix]"

This will also install all of the wxPython packages needed for the GUIs, as well as the libraries related to Jupyter.

As shown in Table of Packages needed from conda-forge, the most notable missing binary package needed for xraylarch on PyPI is the wxPython package on Linux. That means that if wxPython is not already installed, pip will try to compile it, which will almost certainly fail. This is one of the main reasons we recommend using Anaconda Python - it provides wxPython in a consistent manner for all platforms. Anaconda Python also provides very good versions of almost all of the “core scipy ecosystem” libraries and has good support for optional Intel Math Kernel libraries that will be used if available.

But, if you are not using Linux, or are using a system-provided Python that includes wxPython (and has it installed), it should be possible to install a runnable Larch library with

pip install "xraylarch[larix]"

There are other optional add ons that can be installed with Larch, such as

pip install "xraylarch[dev]"

to add development and testing packages, or

pip install "xraylarch[doc]"

to add tools needed to build the docs, or

pip install "xraylarch[epics]"

to add tools needed to use the Epics controls system, or

pip install "xraylarch[all]"

to install all these (and a few more packages)

1.5. Updating X-ray Larch

As new versions of X-ray Larch are released, they will be announced and pushed to PyPI. Larix and some other Larch Applications will notify you about available updates.

Updating can be done by running

pip install --upgrade "xraylarch[larix]"

in the appropriate shell or Windows command environment.

Changed in version 2026.1.0.

Beginning with version 2026.1.0, the Jupyter Lab browser-based interface to Python is installed with Larch, and a shortcut is includeed in the Larch folder on your desktop. Running Jupyter Lab includes a “Terminal”, that runs in your browser. This should be shown under the “Other” category on the main Launcher, or can be invoked from the File->Terminal menu.

This Terminal conveniently runs with the same environment settings as Larch, so knows which pip and python command to use, whereas the shell or Windows command environment may not.

That is, we highly recommend using the Terminal with Jupyter Lab to upgrade your Larch installation.

1.6. Installing the development version

For the brave, a nightly build of the latest development version can be downloaded and installed with

larch -n

From a Terminal window.

We try to keep this development version working, but as this is an automated snapshot it might catch the development in the middle of trying to fix something tricky.

1.8. Larch for developers (source installation)

For developers, Larch is an open-source project, with active development happening at the Larch Repository (github.com). There, you will find the latest source code and pages for submit bug reports.

To get started, we recommend following the installation instructions for or ref:install-binary, ref:install-script, or ref:install-conda. That gives you a base starting Python environment that we can all be pretty sure is working. With that in place, to install Larch from source, you can clone the source repository with:

git clone https://github.com/xraypy/xraylarch.git

and then install with:

pip install -e ".[all]"

This use of pip will install any requirements and Larch itself, but those should have been installed already when you installed. Depending on your platform and version of Python you are installing to, you may need elevated permissions as from sudo to install Larch to a system folder.

1.8.1. Installing Optional Python Packages with Larch

While most of the packages required for Larch will be installed automatically (and are listed in the pyproject.toml file in the source tree), there are a few packages that are useful for some functionality but somewhat less easy to have as a hard dependency (usually because they are not readily available on PyPI for all platforms). These optional packages are listed in the table below. Note that most of these will be installed with Larch whether you install from a binary installer with pip install xraylarch.

1.9. Getting Help

For questions about using or installing Larch, please use the Ifeffit Mailing List. For reporting bugs or working with the development process, please submit an issue at the Larch Github Pages.

1.10. Docs and Examples

The source kit includes sources for documentation in the docs folder and several examples (including all those shown in this documentation) in the examples folder.

These are also available separately in the zip file at Docs and Examples that contains a doc folder with this full documentation, and an examples folder with all of the Larch examples.

1.11. Citing Larch

Currently, the best citation for Larch is M. Newville, Larch: An Analysis Package For XAFS And Related Spectroscopies. Journal of Physics: Conference Series, 430:012007 (2013). [Newville (2013)]

1.12. Funding and Support

Larch development at the Center for Advanced Radiation Sources at the University of Chicago is currently supported by the National Science Foundation - Earth Sciences division and its SEES: Synchrotron Earth and Environmental Science (EAR-2223273). Earlier funding has come from GeoScoilEnviroCARS grant from NSF-EAR (EAR-1128799), and Department of Energy GeoSciences (DE-FG02-94ER14466). In addition, funding specifically for Larch was granted by the National Science Foundation - Advanced CyberInfrastructure (ACI-1450468).

1.13. Acknowledgements

Larch was mostly written by and is maintained by Matt Newville <newville@cars.uchicago.edu>. Bruce Ravel has an incalculable influence on the design and implementation of this code and has provided countless fixes for serious problems in design and execution in the early stages. More importantly, Larch would simply not exist without the long and fruitful collaboration we’ve enjoyed. Margaret Koker wrote most of the X-ray diffraction analysis code, and much of the advanced functionality of the GSECARS XRF Map Viewer. Mauro Rovezzi has provided the spec-data reading interface and the RIXS viewer. Tom Trainor had a very strong influence on the original design of Larch, and helped with the initial version of the python implementation. Yong Choi wrote the code for X-ray standing wave and reflectivity analysis and graciously allowed it to be included and modified for Larch. Tony Lanzirotti and Steve Sutton have provided wonderful and patient feedback on many parts of Larch, especially for XANES processing and testing of the Larix GUI.

Because Larch began as a rewrite of the Ifeffit XAFS Analysis Package, it also references and builds on quite a bit of code developed for XAFS over many years at the University of Chicago and the University of Washington. The existence of the code and a great deal of its initial design therefore owes a great thanks to Edward Stern, Yizhak Yacoby, Peter Livens, Steve Zabinsky, and John Rehr. More specifically, code written by Steve Zabinsky and John Rehr for the manipulation of results from FEFF and for the calculation of thermal disorder parameters for XAFS are included in Larch with little modification. Both Feff6l and Feff8l, the product of many man years of effort by the Feff group led by John Rehr, are included in Larch. A great many people have provided excellent bug reports, feedback, in depth conversations, and suggestions for making Ifeffit better, including on the ifeffit mailing list. Many of these contributions have found their way into Larch.

Larch uses X-ray scattering factors and cross-sections from the xraydb library. This uses code to store and read the X-ray Scattering data from the Elam Tables was modified from code originally written by Darren S. Dale. Refined values for anomalous scattering factors there have been provided directly by Christopher T. Chantler. Further details of the origin of much of the tabularized X-ray data is given in X-ray Databases.

As Larch depends on the fantastic scientific librarie written and maintained in python, especially the numpy, scipy, and matplotlib, the entire scientific python community deserves a hearty thanks. In particular, Larch uses the lmfit library, which began as part of Larch but was spun off into a standalone, general purpose fitting library that became useful for application areas other than XAFS, and has benefited greatly from numerous collaborators and added many features that Larch, in turn, has been able to depend on.

1.14. License

Except where explicitly noted in the individual files, the code, documentation, and all material associated with Larch are distributed under the MIT License:

The MIT License

Copyright (c) 2010-2025 Matthew Newville, The University of Chicago
                        Mauro Rovezzi, University Grenoble Alpes, CNRS
                        Bruce Ravel, National Institute of Science and Technology
                        Margaret Koker, Lawrence University
                        Ryuichi Shimogawa, Stony Brook University

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXP80RESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE qUSE OR OTHER DEALINGS IN THE
SOFTWARE.