LionSec / xerosploit

Efficient and advanced man in the middle framework
GNU General Public License v3.0
2.02k stars 651 forks source link

Problem to instal on Mint #21

Open Uzupator opened 8 years ago

Uzupator commented 8 years ago

loki@loki ~ $ sudo xerosploit Traceback (most recent call last): File "/opt/xerosploit/xerosploit.py", line 26, in from terminaltables import DoubleTable ImportError: No module named terminaltables

how to fix this problem ?

thepicturesgotsmall commented 8 years ago

You need to download/install the dependencies - specifically TerminalTables as noted in the last line in your error. I too run Mint and had same output and of the three depends I only needed tabulate and TerminalTables. You should likely know already if you have pip or not. In any case make sure you use pip for the final two. Running the last two or all three commands I've included below will be the ticket for you. Hope it helps.

sudo apt install pip sudo pip install tabulate sudo pip install terminaltables