brew linkapps 不会将 emacs 链接到 El Capitan 中的应用程序文件夹

brew linkapps 不会将 emacs 链接到 El Capitan 中的应用程序文件夹

我已经通过输入安装了 emacs brew install emacs。它已成功安装,但输入内容brew linkups --verbose显示:

No apps linked to /Applications

有没有办法让我的应用程序文件夹中包含 emacs?

答案1

自制Homebrew 有 Emacs 24.5。它是:

可以使用 --with-cocoa 开关构建特定于 Cocoa 的 Emacs.app

要安装和链接,请在 shell 中运行以下命令:

1. brew update

2. brew install emacs --with-cocoa

3. brew linkapps emacs

要从发射台或来自聚光灯

1. sudo rm /usr/bin/emacs    (removes the older version)
2. sudo rm -rf /usr/share/emacs

或者在你的 shell 中创建一个别名:

alias emacs="/usr/local/Cellar/emacs/24.x/Emacs.app/Contents/MacOS/Emacs -nw"

为了使其永久生效,如果使用 bash,请将该行添加到的〜/ .bash_profile

您也可以按照以下命令使用包管理器进行安装:

1. brew install --with-cocoa emacs

2. brew install --with-cocoa --srgb emacs (to get some colours) 

3. ln -s /usr/local/Cellar/emacs/24.5/Emacs.app /Applications (for linking)

安装后,在终端或shell中使用emacs命令将运行-nw版本的Emacs。

希望这对你有用。

谢谢。

相关内容