LoginSignup
10
11

More than 5 years have passed since last update.

evm を使って最新版のEmacsをUbuntu 12.04にインストールしてみる

Posted at

あらまし

どうやらdiredのフックが足りないようでdired-kが24.1では思うように動かないぽいので、
どうせだからEmacs 24.4をインストールしようと思った次第。

ただ、Ubuntu 12.04環境でEmacs 24.4のPPA等パッケージはなく、tarballからインストールしなければいけないようだ。
なるべくならパッケージと同じくremoveできるようにしたいが、いちいちパッケージ作るのはとても面倒だ。

幸い、evmというEmacs のバージョンマネージャがあるのでこちらを使ってみる。

インストール

evmのインストール

curl -fsSkL https://raw.github.com/rejeep/evm/master/go | bash

.bashrcに以下を追記。

export PATH="$HOME/.evm/bin:$PATH"

/usr/local/evmを作成

sudo mkdir /usr/local/evm

Emacsのインストール

以下でインストールできるEmacsのリストが取得できる。

evm list

以下でインストール(Ex. Emacs 24.4)

evm install emacs-24.4

あうあう

…が、どーやらProxyに対応してない感じが。
https://github.com/rejeep/evm/issues/56

というわけで、Proxy環境対応を待ちましょう(ToT)。

10
11
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
11