Setup the development environment¶
If you are considering to contribute to EXPLIoT then it’s recommended to use
a Python virtual environment (venv).
$ git clone https://gitlab.com/[YOUR_FORK]/expliot.git
$ cd expliot
$ python3 -m venv .
$ source bin/activate
$ python3 setup.py develop
To create a new feature, create a new branch in your fork.
$ git checkout -b new_feature master
When you are done, commit your changes and open a merge request.