Home » Bug #558
wrong package order in install cmd?
Details
| Submitted | 2004-01-12 13:00 UTC |
|---|---|
| From | nisse at riotdesign dot com |
| Assigned | gurugeek |
| Status | Closed |
| Package | Documentation |
| PHP Version | Irrelevant |
| OS | - |
| Roadmaps | (Not assigned) |
Comments
[2004-01-12 13:00 UTC] nisse at riotdesign dot com
Description:
------------
http://pear.php.net/manual/en/installation.shared.php
when trying to install PEAR by using this command (as specified on the web page):
$ pear -c ~/.pearrc install Archive_Tar PEAR Console_Getopt XML_RPC
i got the following error message:
requires package `Console_Getopt' >= 1.2
requires package `XML_RPC' >= 1.0.4
PEAR: Dependencies failed
it seems as the problem is solved if PEAR is put at the end of the command, like this:
$ pear -c ~/.pearrc install Archive_Tar Console_Getopt XML_RPC PEAR
Peace
Nisse