LionSec / xerosploit

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

ImportError: No module named terminaltables #102

Open EslamElsaidi opened 6 years ago

EslamElsaidi commented 6 years ago

Traceback (most recent call last): File "/opt/xerosploit/xerosploit.py", line 26, in from terminaltables import DoubleTable

VERAN-HM commented 6 years ago

pip install tabulate try this command friend and id3ilna m3ak

ghost commented 6 years ago

Not working even after this command :(

larry852 commented 6 years ago

Try: python2.7 /usr/bin/pip install terminaltables python2.7 /usr/bin/pip install tabulate python2.7 /opt/xerosploit/xerosploit.py

An0nUD4Y commented 6 years ago

Its working Thanks... @larry852

lcbiplove commented 6 years ago

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

lcbiplove commented 6 years ago

plz.... help to solve this problem in xerosploit

marbyn commented 6 years ago

help to solve this problem in xerosploit

hamidule6 commented 6 years ago

Tell me what can I help you.

On Sun, 29 Jul 2018 09:29 marbyn, notifications@github.com wrote:

help to solve this problem in xerosploit

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/LionSec/xerosploit/issues/102#issuecomment-408650243, or mute the thread https://github.com/notifications/unsubscribe-auth/AnSa5OwNCh1RYpqdmY0tkmOlNNjD-LZQks5uLTM2gaJpZM4QYZjP .

Squiddlle commented 6 years ago

python2.7 /usr/local/bin/pip install terminaltables

Irmawanto commented 5 years ago

l found the solution for error install xerosploit

pip install terminal tables pip install tabulate

and if you already install everything install xerosploit again and open the xerosploit enjoy the xerosploit

bacaham22 commented 4 years ago

Alguien me puede ayudar no encuentro la solución ayuden root @ kali: ~ # xerosploit Traceback (última llamada más reciente): Archivo "/opt/xerosploit/xerosploit.py", línea 26, desde terminaltables import DoubleTable ImportError: Ningún módulo llamado terminaltables

ghost commented 4 years ago

@larry852 thk u that worked

alvin710 commented 4 years ago

I think you are suppose to type in Terminal “from terminaltables import DoubleTable“

misbagas commented 4 years ago

hey @larry852
why No such file or directory of my file

/opt/local/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python: can't open file '/usr/bin/pip': [Errno 2] No such file or directory

anyone please help me

ArunBhandarii commented 4 years ago

Its because you have installed the modules for python2 but you're executing the file on python3. Do this; /usr/bin/pip3 install terminaltable /usr/bin/pip3 install tabulate

osamabasem commented 3 years ago

i have same problem that say .... when i write xerosploit tracekback (most recent call last): file "/opt/xerosploit/xerosploit.py", line 26, in from terminaltables import DoubleTables ImportError: no module named terminaltables

osamabasem commented 3 years ago

i have same problem that say .... when i write xerosploit tracekback (most recent call last): file "/opt/xerosploit/xerosploit.py", line 26, in from terminaltables import DoubleTables ImportError: no module named terminaltables

i want solve please

ekovegeance commented 3 years ago

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


on Kali Linux 2020

deadsince commented 3 years ago

Traceback (most recent call last): File "xerosploit.py", line 26, in from terminaltables import DoubleTable ImportError: No module named terminaltables

deadsince commented 3 years ago

Its because you have installed the modules for python2 but you're executing the file on python3. Do this; /usr/bin/pip3 install terminaltable /usr/bin/pip3 install tabulate

ERROR: Could not find a version that satisfies the requirement terminaltable (from versions: none) ERROR: No matching distribution found for terminaltable

parinavcodes commented 3 years ago

Terminaltables at the point of this comment, supports these versions: Python 2.6, 2.7, PyPy, PyPy3, 3.3, 3.4, and 3.5 supported on Linux and OS X. Python 2.7, 3.3, 3.4, and 3.5 supported on Windows (both 32 and 64 bit versions of Python).

adinesh590 commented 3 years ago

Try: python2.7 /usr/bin/pip install terminaltables python2.7 /usr/bin/pip install tabulate python2.7 /opt/xerosploit/xerosploit.py

Traceback (most recent call last): File "/usr/bin/pip", line 6, in from pkg_resources import load_entry_point File "/usr/lib/python2.7/dist-packages/pkg_resources/init.py", line 3251, in @_call_aside File "/usr/lib/python2.7/dist-packages/pkg_resources/init.py", line 3235, in _call_aside f(*args, **kwargs) File "/usr/lib/python2.7/dist-packages/pkg_resources/init.py", line 3264, in _initialize_master_working_set working_set = WorkingSet._build_master() File "/usr/lib/python2.7/dist-packages/pkg_resources/init.py", line 583, in _build_master ws.require(requires) File "/usr/lib/python2.7/dist-packages/pkg_resources/init.py", line 900, in require needed = self.resolve(parse_requirements(requirements)) File "/usr/lib/python2.7/dist-packages/pkg_resources/init.py", line 786, in resolve raise DistributionNotFound(req, requirers) pkg_resources.DistributionNotFound: The 'pip==20.1.1' distribution was not found and is required by the application

help, please!!!!!!!!!!!

HUNTERBUNNY303 commented 3 years ago

Traceback (most recent call last): File "/opt/xerosploit/xerosploit.py", line 26, in from terminaltables import DoubleTable

This video clears all errors https://youtu.be/_1KpQ0hYeVw

Kaushal-art commented 3 years ago

Try

Inside xerosploit.py file replace the following line as given below

from terminaltables import DoubleTable

with

from terminaltables.other_tables import DoubleTable

I faced the same problem after this the problem is solved... Thanks may this solve yours problem

RTMN369 commented 2 years ago

el video que compartio HUNTERBUNNY303 funciona perfectamente graciass

rockydipsy commented 2 years ago

pip install -t /usr/lib/python2.7/dist-packages/ terminaltables pip install -t /usr/lib/python2.7/dist-packages/ tabulate

okcoder2019 commented 2 years ago

I got it working with python3.8 xerosploit.py

tboy-hacker commented 2 years ago

guy stop fighting for something easy like go to this link https://chowdera.com/2021/12/202112112325476349.html

Apoloyon commented 2 years ago

Traceback (most recent call last): File "/opt/xerosploit/xerosploit.py", line 26, in from terminaltables import DoubleTable

This video clears all errors https://youtu.be/_1KpQ0hYeVw

Yea this works

Ayanjjj commented 1 year ago

sudo apt install 2to3 pip3 install 2to3 sudo 2to3 -W install.py sudo python3 install.py sudo 2to3 -W xerosploit.py sudo python3 xerosploit.py

halqadasi commented 1 year ago

pip install terminal tables pip install tabulate

this solution worked with me but without space between termianl and table: terminaltables