Skip to content

Instantly share code, notes, and snippets.

@akolkarsohan
Created October 14, 2016 10:35
Show Gist options
  • Save akolkarsohan/5d3f0f32ff121735f8da2098e1a13f36 to your computer and use it in GitHub Desktop.
Save akolkarsohan/5d3f0f32ff121735f8da2098e1a13f36 to your computer and use it in GitHub Desktop.
Install Emacs from source on Ubuntu
#!/bin/bash
sudo apt-get update
sudo apt-get install build-essential
sudo apt-get build-dep emacs24
cd ~/Downloads
wget "http://gnu.mirrors.hoobly.com/gnu/emacs/emacs-24.5.tar.gz"
tar xvzf emacs-24.*.tar.gz
cd emacs-24.*
./configure --without-x
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment