Installation
Installing the package
ACID_v2 has been tested in Python 3.13, and is currently incompatible with 3.14. It is recommended to install ACID in a new conda environment to avoid dependency conflicts.
In this example we create an environment named ‘acid’ and activate it using:
conda create -n acid python=3.13
conda activate acid
Once the environment has been activated ACID can be installed using pip:
pip install ACID_code_v2
Cloning the repository
In order to use the example data (for the tutorials) or the test suite ACID will need to be installed from the source (i.e. directly from the GitHub repository). This can be done by cloning the source repository. All examples and tests attempt first to import from your pip installation. If this fails they will attempt to import from the local source directory instead.
git clone https://github.com/Benjamin-Cadell/ACID_v2.git
cd ACID_v2
Testing the installation
Test your installation by running our test file in the test directory using pytest. This may take a while (~1-2 min) but should run without any errors if the installation has gone smoothly.
pytest tests/tests.py