pikpikcu / Pentest-Tools-Framework

Pentest Tools Framework is a database of exploits, Scanners and tools for penetration testing. Pentest is a powerful framework includes a lot of tools for beginners. You can explore kernel vulnerabilities, network vulnerabilities
GNU General Public License v3.0
425 stars 100 forks source link

NameError: name 'raw_input' is not defined #8

Open huseyinertugrul opened 2 years ago

huseyinertugrul commented 2 years ago

Hello When I want to install Pentest Tool on Kali I am getting an error like below. It doesn't give me a choice for Operating system

python install.py

┌══════════════════════════════════════════════════════════════┐
█ █
█ Pentest Tools installer █
█ █
└══════════════════════════════════════════════════════════════┘

[++] Please choose your operating system.

1) Kali linux 2) Parrot OS 3) ubuntu

Traceback (most recent call last): File "/home/kali/Downloads/Pentest-Tools-Framework-master/install.py", line 53, in main() File "/home/kali/Downloads/Pentest-Tools-Framework-master/install.py", line 25, in main ptf = raw_input(">>> ") NameError: name 'raw_input' is not defined

romualready commented 2 years ago

worked when executing "sudo python2 install.py"

daveBuccheri commented 2 years ago

It is possible to use python3 changing raw_input() with input(). It runs.