Conda Installation
Use Conda when you want an isolated and reproducible environment.
1. Create environment
conda create -n surfatt python=3.11 -y
conda activate surfatt2. Install build dependencies
conda install -c conda-forge cmake make compilers openmpi -y3. Build SurfATT
git clone https://github.com/TomoATT/SurfATT.git
cd SurfATT
mkdir -p build && cd build
cmake ..
make -jNotes
- Replace
openmpiwith your cluster MPI stack if needed. - Keep an
environment.ymlin your project for long-term reproducibility.
Last updated on