# Installation ## Requirements This project requires: * Python 3.10 or higher * simapy ## Setting up the Examples 1. Clone the repository: ```bash git clone https://github.com/SINTEF/simapy-examples.git cd simapy-examples ``` 2. Create a virtual environment (recommended): ```bash python -m venv venv # On Windows .\venv\Scripts\activate # On Linux/macOS source venv/bin/activate ``` 3. Install the requirements: ```bash pip install -r requirements.txt ``` 4. You're ready to run the examples!