S
Surjit Nameirakpam
I wanted to read a csv file and do some manipulation on it so i tried
writing a small program but i get this error
##########T his is the program
require "faster_csv"
FasterCSV.foreach("C:\\rubyprograms\\Input.csv") do |row|
# use row here...
puts row
end
########## This is the error
trialread.rb:1:in `require': no such file to load -- faster_csv
(LoadError)
from trialread.rb:1
Please help on what mistake i am commiting
writing a small program but i get this error
##########T his is the program
require "faster_csv"
FasterCSV.foreach("C:\\rubyprograms\\Input.csv") do |row|
# use row here...
puts row
end
########## This is the error
trialread.rb:1:in `require': no such file to load -- faster_csv
(LoadError)
from trialread.rb:1
Please help on what mistake i am commiting