Installation

You can clone the repository by calling

git clone https://gitlab.kuleuven.be/meco/arena/arena-analytical-planner.git

To install Arena (ideally into a virtualenv) just run the setup.py script with the install parameter. It will install your application into the virtualenv site-packages folder and also download and install all dependencies:

python setup.py install

If you are developing on Arena and also want the requirements to be installed, you can use the develop command instead:

python setup.py develop

This has the advantage of just installing a link to the site-packages folder instead of copying the data over. You can then continue to work on the code without having to run install again after each change.