LoginSignup
6
5

More than 5 years have passed since last update.

Ubuntu 12.04にagをインストールする

Posted at

嵌ったのでメモ。

環境

$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=12.04
DISTRIB_CODENAME=precise
DISTRIB_DESCRIPTION="Ubuntu 12.04 LTS"

インストール

$ git clone https://github.com/ggreer/the_silver_searcher
$ cd the_silver_searcher && ./build.sh

エラー

./build.sh: line 16: aclocal: command not found

対応

$ sudo apt-get install automake

インストール再開

$ ./build.sh

エラー

No package 'libpcre' found

対応

$ sudo apt-get install libpcre3-dev

インストール再開

$ ./build.sh

エラー

No package 'liblzma' found

対応

$  sudo apt-get install liblzma-dev

インストール再開

$ ./build.sh
$ sudo make install
6
5
0

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
6
5