2

我正在尝试在我的 Mac OS X 10.9 上运行 CLI happygrep。但发生错误: happygrep - dyld:未加载库:/usr/local/opt/ncurses/lib/libncursesw.5.dylib

我这样安装它:

  $ brew cask update
  $ brew cask install happygrep

有人能帮我吗 ?谢谢。

4

2 回答 2

5

重新安装ncurses软件包应该会有所帮助,例如

brew reinstall ncurses
于 2016-11-25T19:25:22.803 回答
1

经过挣扎,我找到了解决方法:

  1. 为什么会报错:因为 CLI happygrep 需要 ncursesw 相关的 lib 来支持。
  2. 安装 ncursesw 相关的库:

    $ brew search ncurses
    homebrew/dupes/ncurses 
    $ brew install homebrew/dupes/ncurses
    

  3. 之后,运行 CLI happygrep 'key-word'

    请参阅此 -happygrep 用法

于 2015-03-13T06:15:00.127 回答