dnschef icon indicating copy to clipboard operation
dnschef copied to clipboard

Can't run dnschef.py

Open kenantan32 opened this issue 6 years ago • 5 comments

root@kali:~/Desktop/dnschef-master# ./dnschef.py Traceback (most recent call last): File "./dnschef.py", line 40, in from dnslib import * ModuleNotFoundError: No module named 'dnslib'

kenantan32 avatar Jul 10 '19 18:07 kenantan32

Did you installed dnslib as listed in requirements.txt?

Deric-W avatar Jul 13 '19 21:07 Deric-W

I'm getting it to i ran pip3 list and there dnslib was installed but DNSChef did not see it

lukeh990 avatar Sep 22 '19 00:09 lukeh990

Got the same issue, but if you install it using pip, you must run pip as root, as you must provide privilege access to run dnschef, if not, it will install it into you std user so try: sudo pip3 install dnslib

MatP-MatP avatar Apr 05 '20 19:04 MatP-MatP

hmm I have tried both sudo -H pip3 install -r requirements.txt as well.. but no joy..

still getting** Traceback (most recent call last): File "./dnschef.py", line 40, in from dnslib import * ModuleNotFoundError: No module named 'dnslib' ➜ dnschef git:(master)

os is OSX catalina .3 python3

any ideas?

hotelzululima avatar Apr 11 '20 11:04 hotelzululima

@kynanelliot @RandomProrammer @hotelzululima python -m pip install dnslib

You don't need to run pip as root because it is literally just downloading and moving python files which represents dnslib.

y2k04 avatar Sep 20 '20 09:09 y2k04