チラシの裏

Raspberry PiにThe Silver Searcherをインストール

2015.07.14

Raspberry Pi(Raspbian)にThe Silver Searchar(ag)をインストールしました。

https://github.com/ggreer/the_silver_searcher

apt-getではインストールできなかったのでソースからインストール。

$ sudo apt-get install automake pkg-config libpcre3-dev zlib1g-dev liblzma-dev
$ wget http://geoff.greer.fm/ag/releases/the_silver_searcher-0.30.0.tar.gz
$ tar -zxvf the_silver_searcher-0.30.0.tar.gz
$ cd the_silver_searcher-0.30.0
$ ./configure --prefix=$HOME/usr #今回はユーザディレクトリにインストール
$ make
$ make install

$ ag --version
ag version 0.30.0

Features:
  +jit +lzma +zlib
comments powered by Disqus