Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ERROR: Requirements have not been satisfied properly. Please look at the README file for configuration instructions. #279

Closed
psyko59200 opened this issue Apr 6, 2018 · 27 comments
Assignees

Comments

@psyko59200
Copy link

psyko59200 commented Apr 6, 2018

Hi, I have everything installed and it marks me this error
Scapy 2.4.0
python 3.6.5
nmap 7.70

root@ANDROID:~/Bureau/kickthemout-master# sudo python3 kickthemout.py

ERROR: Requirements have not been satisfied properly. Please look at the README file for configuration instructions.

If you still cannot resolve this error, please submit an issue here:
	https://github.com/k4m4/kickthemout/issues

Details: 'No module named 'scapy
root@ANDROID:~/ Bureau/kickthemout-master# pip install -r requirements.txt
Requirement already satisfied: scapy-python3 in /usr/local/lib/python2.7/dist-packages (from -r requirements.txt (line 1))
Requirement already satisfied: python-nmap in /usr/local/lib/python2.7/dist-packages (from -r requirements.txt (line 2))
Requirement already satisfied: netifaces in /usr/local/lib/python2.7/dist-packages (from -r requirements.txt (line 3))
@Aabhusan
Copy link

Aabhusan commented Apr 9, 2018

i am also facing same problem, please someone help me to get rid of this problem, as soon as possible.

@ghost
Copy link

ghost commented Apr 10, 2018

same problem :(

@zacharymcarr44
Copy link

zacharymcarr44 commented Apr 10, 2018 via email

@psyko59200
Copy link
Author

psyko59200 commented Apr 11, 2018 via email

@psyko59200
Copy link
Author

Hi have you find a solution?

@k4m4
Copy link
Owner

k4m4 commented Apr 14, 2018

Hi there @psyko59200. Can you try using pip3 instead of pip? Thanks and apologies for the late response.

@psyko59200
Copy link
Author

psyko59200 commented Apr 14, 2018

Requirement already satisfied: scapy-python3 in /usr/local/lib/python3.6/dist-packages (from -r requirements.txt (line 1)) (0.23)
Requirement already satisfied: python-nmap in /usr/local/lib/python3.6/dist-packages (from -r requirements.txt (line 2)) (0.6.1)
Requirement already satisfied: netifaces in /usr/local/lib/python3.6/dist-packages (from -r requirements.txt (line 3)) (0.10.6)
matplotlib 2.1.1 requires backports.functools_lru_cache, which is not installed.
matplotlib 2.1.1 requires subprocess32, which is not installed.

@k4m4
Copy link
Owner

k4m4 commented Apr 14, 2018

Have you downloaded nmap?

@psyko59200
Copy link
Author

Yes

@psyko59200
Copy link
Author

he marks me marks his two mistakes
matplotlib 2.1.1 requires backports.functools_lru_cache, which is not installed.
matplotlib 2.1.1 requires subprocess32, which is not installed.

@k4m4
Copy link
Owner

k4m4 commented Apr 14, 2018

Can you please uninstall and reinstall all dependencies exactly as they are stated in the readme file, pasting all the steps here? Thanks.

@psyko59200
Copy link
Author

how about uninstall?

@psyko59200
Copy link
Author

I just reinstall everything and always the same mistake

@Aabhusan
Copy link

Aabhusan commented Apr 14, 2018 via email

@psyko59200
Copy link
Author

psyko59200 commented Apr 14, 2018

root@ANDROID:~/Documents/kickthemout-master# python kickthemout.py 

ERROR: Requirements have not been satisfied properly. Please look at the README file for configuration instructions.

If you still cannot resolve this error, please submit an issue here:
	https://github.com/k4m4/kickthemout/issues

Details: 'errors' is an invalid keyword argument for this function
root@ANDROID:~/Documents/kickthemout-master# python3 kickthemout.py 

ERROR: Requirements have not been satisfied properly. Please look at the README file for configuration instructions.

If you still cannot resolve this error, please submit an issue here:
	https://github.com/k4m4/kickthemout/issues

Details: No module named 'scapy'
root@ANDROID:~/Documents/kickthemout-master# 

@psyko59200
Copy link
Author

psyko59200 commented Apr 14, 2018

when i do sudo -H pip3 install -r requirements.txt
He tells me command not found

@k4m4
Copy link
Owner

k4m4 commented Apr 15, 2018

Can you please re-run the process and copy/paste every command and its result?

@psyko59200
Copy link
Author

psyko59200 commented Apr 15, 2018

root@ANDROID:~/Documents/kickthemout-master# sudo -H pip3 install -r requirements.txt
sudo: pip3 : commands not found
root@ANDROID:~/Documents/kickthemout-master# sudo -H pip install -r requirements.txt
Requirement already satisfied: scapy-python3 in /usr/local/lib/python2.7/dist-packages (from -r requirements.txt (line 1))
Requirement already satisfied: python-nmap in /usr/local/lib/python2.7/dist-packages (from -r requirements.txt (line 2))
Requirement already satisfied: netifaces in /usr/local/lib/python2.7/dist-packages (from -r requirements.txt (line 3))
root@ANDROID:~/Documents/kickthemout-master# sudo python3 kickthemout.py

ERROR: Requirements have not been satisfied properly. Please look at the README file for configuration instructions.

If you still cannot resolve this error, please submit an issue here:
	https://github.com/k4m4/kickthemout/issues

Details: No module named 'scapy'

@k4m4
Copy link
Owner

k4m4 commented Apr 15, 2018

Can you try changing the following code in the kickthemout.py:

  • from scapy.config import conf to from scapy3k.config import conf

and the following in spoof.py:

  • from scapy.all import (... to from scapy3k.all import (...
    Thanks.

@k4m4 k4m4 closed this as completed Apr 15, 2018
@k4m4 k4m4 reopened this Apr 15, 2018
@psyko59200
Copy link
Author

psyko59200 commented Apr 15, 2018

root@ANDROID:~/Documents/kickthemout-master# sudo python3 kickthemout.py 

ERROR: Requirements have not been satisfied properly. Please look at the README file for configuration instructions.

If you still cannot resolve this error, please submit an issue here:
	https://github.com/k4m4/kickthemout/issues

Details: No module named 'scapy3k'

@k4m4
Copy link
Owner

k4m4 commented Apr 15, 2018

When you run sudo -H pip install -r requirements.txt you are installing dependencies for python2 not python3. You should download pip3 and try reinstalling. Try sudo apt-get install python3-setuptools.

@psyko59200
Copy link
Author

psyko59200 commented Apr 15, 2018

root@ANDROID:~/Documents/kickthemout-master# sudo -H pip3 install -r requirements.txt
Collecting scapy-python3 (from -r requirements.txt (line 1))
  Downloading scapy-python3-0.23.tar.gz (2.2MB)
    100% |████████████████████████████████| 2.2MB 436kB/s 
Collecting python-nmap (from -r requirements.txt (line 2))
  Downloading python-nmap-0.6.1.tar.gz (41kB)
    100% |████████████████████████████████| 51kB 4.8MB/s 
Collecting netifaces (from -r requirements.txt (line 3))
  Downloading netifaces-0.10.6.tar.gz
Building wheels for collected packages: scapy-python3, python-nmap, netifaces
  Running setup.py bdist_wheel for scapy-python3 ... done
  Stored in directory: /root/.cache/pip/wheels/bc/ac/89/a4b0a177087515cd5e192c6343b402b0909ed2897461a4f857
  Running setup.py bdist_wheel for python-nmap ... done
  Stored in directory: /root/.cache/pip/wheels/d2/20/17/8eb9401fb0fa5ffbd0394c44d9d1c743036896c86029b0a613
  Running setup.py bdist_wheel for netifaces ... done
  Stored in directory: /root/.cache/pip/wheels/28/e1/08/e66a4f207479500a27eae682a4773fa00605f2c5d953257824
Successfully built scapy-python3 python-nmap netifaces
Installing collected packages: scapy-python3, python-nmap, netifaces
Successfully installed netifaces-0.10.6 python-nmap-0.6.1 scapy-python3-0.23
root@ANDROID:~/Documents/kickthemout-master# python3 kickthemout.py 

ERROR: Requirements have not been satisfied properly. Please look at the README file for configuration instructions.

If you still cannot resolve this error, please submit an issue here:
	https://github.com/k4m4/kickthemout/issues

Details: No module named 'scapy3k'

@k4m4
Copy link
Owner

k4m4 commented Apr 15, 2018

Change scapy3k back to scapy please.

@psyko59200
Copy link
Author

Thank you very much it works !!!

@k4m4
Copy link
Owner

k4m4 commented Apr 15, 2018

No problem, glad I helped.

@k4m4 k4m4 closed this as completed Apr 15, 2018
@TheC0ndor
Copy link

I had the same problem, just fixed it! In the main lscript folder, go to L shell script, change python kickthemout.py to python3 kickthemout.py and then run ./install.sh and update. Works like charm!

@AustinUking
Copy link

did someone found the problem?
tells me in the terminal "no module named nmap"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

6 participants