2013-10-04 61 views
1

我在我的Dreamhost帳戶上使用SSH。Dreamhost - 最新版本的PEAR

我需要通過梨安裝HTTP_Request2 PHP庫

pear install HTTP_Request2 

提供了以下錯誤

pear/HTTP_Request2 requires PEAR Installer (version >= 1.9.2), installed version is 1.9.1 

這裏是pear -V

PEAR Version: 1.9.1 

輸出我試圖迫使上升級Dreamhost服務器

pear upgrade --force http://pear.php.net/get/PEAR-1.9.2甚至

但這種錯誤出來:pear/PEAR is already installed and is the same as the released version 1.9.4 install failed

任何人都遇到類似的問題?

+0

你有聯繫他們嗎?通常DH非常快地解決問題 –

回答

0

您安裝了梨的兩個版本。你運行的那個,你升級的那個。

which pear將返回與pear list-files pear|grep script不同的路徑;那是你的問題。

要麼運行安裝的(從列表文件),要麼設置路徑,以便which pear -version得到更新(pear config-showpear config-set)。

有關更多信息,請參閱Can't install PHPUnit via PEAR, requires PEAR Installer >= 1.9.2, can't upgrade PEAR from 1.9.0

+0

'pear list-files pear | grep bin'cmd返回一個空字符串。如何檢查我的DH服務器的不同版本 –

+0

用腳本替換bin。 – cweiske