in reply to Can't locate Text/CSV.pm in @INC

Perl's error messages are usually quite good. The error message is:

You may need to install the Text::CSV module

The traditional way of installing modules is through the cpan tool:

cpan Text::CSV

This will download, configure and install the Text::CSV module.

So, what did you try to install the module?