Reputation: 1180
I'm trying to install PhalconPHP by it's documentation. in the compilation step i have an error! When i Perform this command:
sudo ./install
Error:
'sudo' is not recognized as an internal or external command, operable program or batch file.
I removed 'sudo' from this command and i have this error for './install' please guide me...
Upvotes: 0
Views: 2867
Reputation: 11485
sudo is an application that temporarily allows you to gain administrative privileges so that you can install the application.
If you are trying to install Phalcon on your local machine which runs Linux, then you will need to either install sudo from your software manager or through the command line
su
apt-get install sudo
If you are trying this on a remote machine, then you need to either install sudo yourself or have the administrator of that machine do it.
Upvotes: 1