Skip to content

Instantly share code, notes, and snippets.

@dgilperez
Last active November 6, 2018 16:58
Show Gist options
  • Save dgilperez/1960607 to your computer and use it in GitHub Desktop.
Save dgilperez/1960607 to your computer and use it in GitHub Desktop.
Compiling and Installing Sphinx 2.0 with libstemmer
# to execute from home folder
wget http://snowball.tartarus.org/dist/libstemmer_c.tgz
wget http://sphinxsearch.com/files/sphinx-2.1.2-release.tar.gz
tar -xvzf sphinx-2.1.2-release.tar.gz
tar -xvzf libstemmer_c.tgz
cp -R libstemmer_c/* sphinx-2.1.2-release/libstemmer_c/
cd sphinx-2.1.2-release/
./configure --with-libstemmer
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment