Installation¶
Prerequisites¶
Python 3.12 or later
Steps¶
Install via pip:
pip install LorenzCycleToolkit
Alternatively, clone the repository:
git clone https://github.com/daniloceano/lorenz-cycle.git cd lorenz-cycle
Create a virtual environment and activate it:
python -m venv venv source venv/bin/activate
Install the dependencies:
pip install -r requirements.txt
For Conda users:
Clone the repository:
git clone https://github.com/daniloceano/lorenz-cycle.git cd lorenz-cycle
Create a Conda environment and activate it:
conda create –name lorenzcycletoolkit python=3.12 conda activate lorenzcycletoolkit
Install the dependencies:
pip install -r requirements.txt