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:
Create a new virtual environment in Anaconda/Miniconda:
conda create -n batea_env pip python=3.7
Activate the environment:
conda activate batea_env
Navigate to the BATEA folder you downloaded.
Install the external packages (do not use pip3):
pip install -r requirements.txt
Install BATEA:
pip install -e .
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.