Some students have reported experiencing errors during the installation of the next tool presented in the course (BATEA) due to issues with versions and dependencies.

To avoid these problems, I recommend installing this tool in a virtual environment created with Anaconda or Miniconda, in the same way as shown in Section 20 about TheHarvester.

To install BATEA in an Anaconda/Miniconda virtual environment, you can follow these steps:

  1. Create a new virtual environment in Anaconda/Miniconda:

    conda create -n batea_env pip python=3.7

  2. Activate the environment:

    conda activate batea_env

  3. Navigate to the BATEA folder you downloaded.

  4. Install the external packages (do not use pip3):

    pip install -r requirements.txt

  5. Install BATEA:

    pip install -e .

  6. Run BATEA by entering the batea command twice in the terminal.

This should make the tool work correctly.

Best regards, and see you in the next section!
Santiago.