2015-08-25 38 views
0

通過PEAR安裝phpDocumentor的,但是當我嘗試運行它,我得到這個錯誤:無法運行PHPDoc的(壞的翻譯錯誤)

bash: /Users/username/pear/bin/phpdoc: /usr/local/Cellar/php55/5.5.9/bin/php: bad interpreter: No such file or directory 

我試圖符號鏈接,但沒有成功這兩個文件。我能做些什麼來運行phpdoc

回答

0

編輯文件/Users/username/pear/bin/phpdoc

#!/usr/local/Cellar/php55/5.5.9/bin/php 

改變第一線,以實際存在的路徑。

或者,運行

php /Users/username/pear/bin/phpdoc ... 

你也應該先驗證它修復PEAR使用PHP二進制:

pear config-get php_bin 

然後用

pear config-set php_bin /path/to/php 

改變它重新安裝phpd之後通過梨現在它會工作。