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

In reply to Re: Need Help Installing DBI and DBD by Tux
in thread Need Help Installing DBI and DBD by orfiyus

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.