advait has asked for the wisdom of the Perl Monks concerning the following question:

I have downloaded this package from http://search.cpan.org/dist/DBD-SQLite/lib/DBD/SQLite.pm . How do I install this package on Ubuntu. Please suggest

Replies are listed 'Best First'.
Re: installing DBD sqlite
by jZed (Prior) on Aug 16, 2007 at 16:19 UTC
    On ubuntu you can do this:
    sudo apt-get install libdbd-sqlite-perl
Re: installing DBD sqlite
by hilitai (Monk) on Aug 16, 2007 at 17:39 UTC
    You don't want to try to 'install' this as a single, bare .pm file. Try getting the full package instead:
     http://search.cpan.org/CPAN/authors/id/M/MS/MSERGEANT/DBD-SQLite-1.13.tar.gz
    
    then do the usual
    perl Makefile.PL
    make 
    make test
    make install
    
    after extracting the tar file.