brew需要php的错误

时间:2017-08-07 14:21:39

标签: php macos laravel jpeg homebrew

安装php71 with homebrew

之后
brew install php71

我也尝试通过

看到它
php -v 

以及它获得的内容enter image description here

dyld: Library not loaded: /usr/local/opt/jpeg/lib/libjpeg.8.dylib
  Referenced from: /usr/local/bin/php
  Reason: image not found
[1]    55097 abort      php -v

看起来我需要安装jpeg 8b而不是9b我怎么能这样做

2 个答案:

答案 0 :(得分:6)

刚遇到一个非常类似的问题。

这样做了:

  1. 卸载PHP 7.1

    brew uninstall php71
  2. 从源代码安装:

    brew install --build-from-source php71
  3. 现在当我做php -v时,我得到了:

    PHP 7.1.7 (cli) (built: Aug  7 2017 13:05:56) ( NTS )
    Copyright (c) 1997-2017 The PHP Group
    Zend Engine v3.1.0, Copyright (c) 1998-2017 Zend Technologies
    

    找到解决方案on this post

    编辑:第二个命令错过公式名称

答案 1 :(得分:0)

我需要做的就是运行以下命令:

export PATH=/usr/local/php5/bin:$PATH

This link很有帮助。