I am trying to install prodigal.
I downloaded it and extracted it in a particular location and in terminal I when I used the command:
make Install
After reaching that location it showed error:
install -d -m 0755 /usr/local/bin
install -m 0755 prodigal /usr/local/bin
install: cannot create regular file '/usr/local/bin/prodigal': Permission denied
Makefile:43: recipe for target 'install' failed
make: *** [install] Error 1
I also tried to change the INSTALLDIR
in the make file and then wrote make install
. It made a directory(from home to prodigal) in the prodigal folder itself and again error came like
install -d -m 0755 /usr/local/bin
install -m 0755 prodigal /usr/local/bin
Do I need to change something else in make file?