Installation

You can use any software you like to create an isolated python environment, so that all dependencies are consistent with the project. Make sure you clone the repository first and enter its directory in your command line.

Virtualenv

You can check how to install virtualenv here.

Create environment

virtualenv maenvs4vrp

Activate environment

maenvs4vrp\Scripts\activate #windows
maenvs4vrp/bin/activate #macos or linux

Install project

pip install -e .

Anaconda

You can install anaconda here.

Create environment

conda create --name maenvs4vrp python=3.11

Activate environment

conda activate maenvs4vrp

Install project

pip install -e .