in reply to Need Help Installing DBI and DBD

In which case I presume you now have a file called DBI-1.53.tar.gz

The references the previous answers posted are to the point, and absolutely worth reading. Evene if some modules do not follow the standards, and some use Module::Build instead of MakeMaker, almost every module has a file called README and/or INSTALL.

Always start with unpacking thearchive

# tar -x -v -z -f DBI-1.53.tar.gz # cd DBI-1.53

Complex modules, like Tk and DBD-Oracle (and of course the CORE itself) also provide README's that are OS specific. Please do read them!

DBI's README is very clear:

QUICK START GUIDE: The DBI requires one or more 'driver' modules to talk to databases +, but they are not needed to build or install the DBI. Check that a DBD::* module exists for the database you wish to use +. Read the DBI README then Build/test/install the DBI by doing perl Makefile.PL make make test make install Then delete the source directory tree since it's no longer needed. Use the 'perldoc DBI' command to read the DBI documentation. See GETTING HELP section in DBI.pm for how to get help.

Enjoy, Have FUN! H.Merijn