I'm trying to install reaver-1.4 in my Ubuntu 18.04 system, but it shows this error:
root@rashedul-ubuntu:~/Desktop/reaver-1.4/src# ./configure
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/home/rashedul/Desktop/reaver-1.4/src':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.
How can I fix this?
gcc
(c compiler needed to compile; orcc
orcl
which are alternative compilers) - hence it cannot proceed. You need a compiler to compile source which it repeats with the message "no acceptable C compiler found" (source code is compiled into the binary executables) – guiverc Aug 03 '18 at 09:45