Installing Xapian on OSX with Python Bindings
I needed to install Xapian for a Django project I was working on for work the other day. I searched the internet for installation instructions I couldn't find anything that was as straight forward and to the to point, so I decided to keep install notes and share them so I would have them for next time I needed them and so hopefully someone doing a search would be able to find them.
1. Install Xapian.
The easiest way to install Xapian is to use Homebrew. Homebrew is a package manager for UNIX/Linux applications and so far is the best one I've found for OSX. There are installation instructions on how to install Homebrew if you haven't installed it already.
$ brew install xapian
Find out what version it installed so you no what bindings you'll need.
$ brew info xapian
2. Compile the bindings
Download the bindings you need that match the version of Xapian you installed in the first step.
If you're using virtualenv then make sure you activate your virtual environment before compiling the bindings.
$ tar -zxvf xapian-bindings-x.x.x.tar.gz
$ cd xapian-bindings-x.x.x
$ ./configure --with-python
$ make
$ make install
Related tags: Django, python
- Save this article for later, bookmark it!
- del.icio.us digg newsvine blinklist magnolia
Post Your Comment
Post Guidelines
Please be considerate of others. Keep comments relevant. Content deemed inappropriate or offensive may be edited and/or deleted. Email addresses are never displayed.
Line breaks and paragraphs are automatically converted — no need to use p or br/. Quotes, apostrophes, and double-dashes are automatically converted to smart punctuation. Be careful when copying and pasting portions of entries or other comments.
Links can be created using the standard <a href="http://url">urlName</a>. The following inline HTML elements may also be used: strong, em, cite, & code. The title attribute is allowed within any element. All other code will get removed before posting.
Latest Photos
Good Reading
- How To Consolidate Your iPhoto Library and Remove Duplicates [MacRx] | Cult of Mac
- Hipmunk: Better Flight and Hotel Search
- High Scalability - High Scalability - Tumblr Architecture - 15 Billion Page Views a Month and Harder to Scale than Twitter
- Ruby on Rails Tutorial: Learn Rails by Example book and screencasts by Michael Hartl | A Demo App
- Mark Cuban's 12 Rules for Startups | Entrepreneur.com
- Welcome to Spreedly! | Spreedly
Comments
Thanks. This is exactly what I needed.
No Problem! :)
Homebrew is so awesome! Thank you for sharing! Saved me many hours of roaming the internet!