Installing Feedzirra RSS Parser on Ubuntu 8

4 Comments
Tags: , , , ,
Posted 11 Jul 2009 in Ruby on Rails

I recently watched a RailsCasts episode (http://railscasts.com/episodes/168-feed-parsing) on parsing and persisting RSS feeds using Feedzirra. It took a little setting up on Ubuntu because it relies on some libraries that aren’t included with Ubuntu > 8.

The gem will fail right off the bat

gem sources -a http://gems.github.com # if you haven't already
gem install pauldix-feedzirra

Here is what I needed before I could install the gem

apt-get install libcurl3
apt-get install libxml2 libxml2-dev
apt-get install libxslt1-dev

Then go ahead and

gem install pauldix-feedzirra

Here are some other useful resources

http://github.com/pauldix/feedzirra/tree/master

http://ruby.zigzo.com/2009/02/15/feedzirra-installation-errors/

Related posts:

  1. Installing Monk on Ubuntu with Ruby Gems
  2. Installing Redis Server and Client on Mac OS X and Ubuntu
  3. Rails, SSL, Ubuntu, Apache2 with Phusion on Ubuntu
  4. Installing Scala on Mac OS X Leopard
  5. Installing Sphinx Search Engine on Mac OS X… or ld: library not found for -lmysqlclient

3 Comments

  1. Don’t forget you can use something like Superfeedr http://superfeedr.com if yu have a huge number of feeds to poll and parse.

  2. Thanks for the writeup, worked great!

  3. ***Here’s an update***

    You need to run this command

    sudo apt-get install libcurl4-gnutls-dev

    I installed Feedzirra on a new machine and couldn’t install the gem w/out it.

    Check the paul’s github page for updates/installation instructions
    ttp://github.com/pauldix/feedzirra/tree/master


1 Trackbacks/Pingbacks

  1. Install and Serve a Rails Application from PHP Subdirectory Using Apache, Phussion Passenger and Ruby Enterprise Edition « Sean Behan's Blog 25 02 10

Add Your Comment