Is it possible to install perlapi 5.14.2 in Debian 9? [closed]

2

I'm trying to install the perlapi-5.14.2 package on a Debian 9 linux server and am having the following return:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package perlapi-5.14.2 is a virtual package provided by:
perl-base 5.14.2-21+deb7u5 [Not candidate version]
perl-base 5.14.2-21+deb7u3 [Not candidate version]

From my research, it looks like we do not have this package in the Debian 9 repository. Is it possible for me to install this package, through the terminal, searching in another repository? Type using wget + link?

    
asked by anonymous 20.10.2017 / 18:53

1 answer

0

First try the update (To update the sources):

sudo apt-get update

And try to install again, if it does not work try:

sudo apt-get -f install

So it will adjust the dependencies and try to install again, but if it does not work try aptitude:

sudo aptitude install perlapi-5.14.2
    
20.10.2017 / 18:58