Analysis scripts for the beam line endstation 7.0.1.1 at the Advanced Light Source
Follow the steps below to set up the environment and install the necessary packages.
If you don't already have Anaconda or Miniconda installed, you can download and install them from the following links:
Open a terminal or command prompt and create a new conda environment with the desired name (e.g., BL7011
):
conda create -n BL7011 python=3.12
conda activate BL7011
Install the required dependencies using the requirements.txt file:
conda install --file requirements.txt -c conda-forge
You can install the main BL7011
package using pip
by first navigating into the folder with the setup.py
file. There are two modes of installation:
For a regular installation, use the following command:
pip install . --no-deps
If you are planning to develop or modify the package, install it in developer mode:
pip install -e . --no-deps
See environment_example.yml
for reference.