From: "Marvin Gülker" Date: 2009-10-08T01:55:00+09:00 Subject: Re: read CSV file using csv library Frank Guerino wrote: > Hi, > > Sorry if this sounds like a dumb question but I'm new to all of this. > > How do I find and install fastercsv? (I'm using a Mac.) > > Thanks for the help, > > Frank You can do this via the command-line tool RubyGems. Try: # gem install fastercsv I'm not familiar with Macs, but that should do it. To learn more about RubyGems, visit: http://docs.rubygems.org/ Marvin PS: And add the line require "rubygems" to your scripts if you're using Ruby 1.8. -- Posted via http://www.ruby-forum.com/.