Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

does AWS provides PEAR package manager installation from repository?

does AWS provides pear package manager installation from repository?

If AWS provides, What is the package name? otherwise please give some pointer on PEAR installation on linux.

 #pear channel-discover pear.amazonwebservices.com
 bash: pear: command not found

 # yum install pear
 Loaded plugins: fastestmirror, priorities, security, update-motd
 Loading mirror speeds from cached hostfile
 * amzn-main: packages.us-east-1.amazonaws.com
 * amzn-updates: packages.us-east-1.amazonaws.com
 Setting up Install Process
 No package pear available.
 Error: Nothing to do
like image 860
P K Avatar asked Dec 26 '11 14:12

P K


People also ask

How do I install an AWS package?

Open the AWS Systems Manager console at https://console.aws.amazon.com/systems-manager/ . In the navigation pane, choose Distributor. On the Distributor home page, choose the package that you want to install or update. For Package, choose Install on a schedule.

Which command is used to install software packages in ec2?

Use the yum install package command, replacing package with the name of the software to install.


1 Answers

You can install pear on your system in two commands:

$ wget http://pear.php.net/go-pear.phar
$ php go-pear.phar
like image 190
RageZ Avatar answered Sep 28 '22 02:09

RageZ