You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OS Used - ALL Information (architecture, linux flavor, etc.)
Latest Kali
We moved away from using pip to install the Python modules because they weren't being installed correctly due to conflicts with other libraries installed by apt. The latest update to the setup script has gone back to pip which is now failing on the latest Kali.
This is what I get if I run the install script on its own:
┌──(robin㉿RT-KALI-RW)-[~/tools/EyeWitness/Python/setup]
└─$ sudo python3 -m pip install -r requirements.txt
error: externally-managed-environment
× This environment is externally managed
╰─> To install Python packages system-wide, try apt install
python3-xyz, where xyz is the package you are trying to
install.
I managed to install all the modules except Selenium using apt but apt wants to install the latest Selenium and gives version 4.24.4 rather than 4.9.1 which doesn't work.
For now, I've got it working using a virtual environment:
OS Used - ALL Information (architecture, linux flavor, etc.)
Latest Kali
We moved away from using
pip
to install the Python modules because they weren't being installed correctly due to conflicts with other libraries installed byapt
. The latest update to the setup script has gone back topip
which is now failing on the latest Kali.This is what I get if I run the install script on its own:
I managed to install all the modules except Selenium using
apt
butapt
wants to install the latest Selenium and gives version 4.24.4 rather than 4.9.1 which doesn't work.For now, I've got it working using a virtual environment:
I don't know how easy it would be to get this setup through the setup script but it might be worth a try.
The text was updated successfully, but these errors were encountered: