Omid Ebrahimi
Omid Ebrahimi

Reputation: 1180

I have an error in this command: sudo ./install

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

Answers (1)

Nikolaos Dimopoulos
Nikolaos Dimopoulos

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

  1. Assume the root role using su
  2. Install the application using 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

Related Questions