Where can I find pre-built Emacs for what Ubuntu calls emacs 25.1?
Asked
Active
Viewed 1.7k times
4 Answers
31
Use the snapshot:
sudo add-apt-repository -y ppa:ubuntu-elisp
sudo apt-get update
sudo apt-get install emacs-snapshot

abo-abo
- 13,943
- 1
- 29
- 43
-
Hi abo-abo, could you please have a look this question http://emacs.stackexchange.com/questions/14682/emacs-snapshot-seq-package-missing? – yi.tang.uni Aug 12 '15 at 09:31
22
In addition to what abo-abo suggests, you can also build the sources by yourself:
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

Adobe
- 1,859
- 13
- 27

Manuel Uberti
- 3,150
- 18
- 36
-
3
-
Is the git repo pointing at times to unstable versions? Shall I go with it or keep it safe and Use abo-abo's PPA ? – turbopape May 28 '15 at 16:06
-
1Yes, lunaryorn, I just added another option to what abo-abo said. – Manuel Uberti May 28 '15 at 16:07
-
Yes the git repo at times can point to unstable versions. I don't know how often the sources on the PPA are built, though. – Manuel Uberti May 28 '15 at 16:47
-
3I've been running Emacs 25 on one of my laptops, and I've found that it's rock solid when it builds. (It failed to build once, which was fixed within 20 minutes.) Definitely a good choice if you don't need the Debian/Ubuntu integration of the stock packages. – jch May 28 '15 at 20:28
-
6before `./configure` I had to do `./autogen.sh` otherwise the out line approach works(tm) – pellekrogholt Apr 24 '16 at 20:19
15
Stable versions (25.1 currently):
sudo apt-add-repository -y ppa:adrozdoff/emacs
sudo apt update
sudo apt install emacs25
Provided packages for LTS 14.04 and 16.04.

Monah Tuk
- 251
- 2
- 3
-
When I try this on LTS 14.04, I got this error: `The following packages have unmet dependencies: emacs25 : Depends: emacs25-bin-common (= 25.1-trusty~ppa2) but it is not going to be installed` I followed some dependency chains and then tried `sudo apt-get install emacs25 emacs25-bin-common emacs25-common emacsen-common emacs25-el` but got this error: `The following packages have unmet dependencies: emacs25-common : Depends: emacsen-common (>= 2.0.8) but 2.0.8~trusty1 is to be installed` I'm not sure what to try next. – Chris Dec 20 '16 at 17:59
-
@Chris, try to solve today. Unfortunately, I have no ability for native run it on 14.04 :-( – Monah Tuk Dec 20 '16 at 23:14
-
-