cant open perl script "Makefile.PL":No such file or directory.
While installing perl-DBI im getting this error. kindly suggest some solution.
cant open perl script "Makefile.PL":No such file or directory.
While installing perl-DBI im getting this error. kindly suggest some solution.
If you have access to from your server install the DBI directory from CPAN
On linux,
# perl -MCPAN -e shell cpan> install DBI
The another way is to download the full bundle from CPAN and install:
perl Makefile.PL make make test make install
Using your OS's package manager when possible is a much better strategy than building modules by hand unless you are using a custom built perl
.