预制的Ubuntu Emacs“ 25.1”


Answers:


22

除了abo-abo的建议之外,您还可以自己构建源:

git clone git://git.savannah.gnu.org/emacs.git
cd emacs
sudo apt-get build-dep emacs24 # for rpm-based linux: sudo yum-builddep emacs
./configure                    # if there's no configure script: ./autogen.sh
make                           # if that fails: make bootstrap
sudo make install
make clean

3
OP询问“预构建”二进制文件。
lunaryorn

git repo有时会指向不稳定的版本吗?我应该使用它还是要保证它的安全并使用abo-abo的PPA?
turbopape

1
是的,lunaryorn,我刚刚在abo-abo的发言中添加了另一个选项。
Manuel Uberti 2015年

3
我一直在我的一台笔记本电脑上运行Emacs 25,并且发现它在构建时非常坚固。(它一次构建失败,在20分钟内修复了。)如果您不需要Debian / Ubuntu软件包的集成,绝对是个不错的选择。
2015年

6
./configure我不得不做./autogen.sh其他方法之前,外线方法工作(tm)
pellekrogholt


15

稳定版本(当前为25.1):

sudo apt-add-repository -y ppa:adrozdoff/emacs
sudo apt update
sudo apt install emacs25

为LTS 14.04和16.04提供的软件包。


当我在LTS 14.04上尝试此操作时,出现以下错误: The following packages have unmet dependencies: emacs25 : Depends: emacs25-bin-common (= 25.1-trusty~ppa2) but it is not going to be installed 我遵循了一些依赖关系链,然后尝试了sudo apt-get install emacs25 emacs25-bin-common emacs25-common emacsen-common emacs25-el但出现了此错误: The following packages have unmet dependencies: emacs25-common : Depends: emacsen-common (>= 2.0.8) but 2.0.8~trusty1 is to be installed 我不确定接下来要尝试什么。
克里斯,

@Chris,今天尝试解决。不幸的是,我没有本机可以在14.04上运行它:-(
Monah Tuk

嗯,似乎2.0.8〜trusty1小于2.0.8
Monah Tuk

@Chris,尝试立即更新。
Monah Tuk

3

对于那些想要在Ubuntu 16.10上运行稳定的emacs 25.1的用户,我从zenity-proposed中拉出了源软件包,并将其推送到我的ppa进行yakkety,因此可以按以下方式安装:

sudo add-apt-repository ppa:aperomsik/aap-ppa
sudo apt-get update
sudo apt-get install emacs25
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.