# Configuration

**In the binary version of the plugin all this process of installation of dependencies is not necessary since they are included in the plugin.**

In order to run the plugin, we must have python3 installed, this can be done with the following command :

**CentOS7**

```
yum install python3
```

We must install the python-ldap module in its python 3 version, this is done with the following command:

```
yum install python3-ldap
```

or with pip :

```
pip3 install python3-ldap
```

In turn, to install the previous module, we will need the following dependencies:

```
yum groupinstall "Development tools"
```

```
yum install openldap-devel python-devel
```

**Fedora**

```
sudo dnf install python3
```

In addition, we must have the python-ldap module installed, this is installed with :

```
pip install python-ldap
```

Fedora will need the following dependencies (from ldap) for this module to be installed:

```
sudo dnf install "@C Development Tools and Libraries" openldap-devel \
    python2-devel python3-devel python3-tox \
    lcov clang-analyzer valgrind
```

For other systems you can see the necessary python-ldap dependencies in :

[https://www.python-ldap.org/en/python-ldap-3.3.0/installing.html](https://www.python-ldap.org/en/python-ldap-3.3.0/installing.html)