Showing posts with label PERL. Show all posts
Showing posts with label PERL. Show all posts

Install perl modules through CPAN on Debian/ Ubuntu

After the installation of Koha on Debian, it seems that the installation of the remaining CPAN modules (e.g. Data::Pagination) is reluctant to install via terminal. We need to install the following package to install CPAN modules properly:

sudo apt install build-essential

Then try to install CPAN modules from the terminal,

sudo su
cpan
install Package::Name

e.g. install Data::Pagination