2

I want to install module XML::XpathEngine of version 0.12 . But cpan has XML::XpathEngine 0.13 version.

How can I install XML::XpathEngine 0.12 version ?

Mandar Pande
  • 12,250
  • 16
  • 45
  • 72
Cindrella
  • 1,671
  • 7
  • 27
  • 47
  • See related: [How can I install a specific version of a Perl module?](http://stackoverflow.com/questions/260593/how-can-i-install-a-specific-version-of-a-perl-module). Path to the 0.12 version of [XML::XpathEngine](http://search.cpan.org/CPAN/authors/id/M/MI/MIROD/XML-XPathEngine-0.12.tar.gz). – j.w.r Sep 27 '12 at 05:24
  • used this command "install http://search.cpan.org/CPAN/authors/id/M/MI/MIROD/XML-XPathEngine-0.12.tar.gz" but not able to install. Is my command is correct – Cindrella Sep 27 '12 at 06:24
  • When I am installing giving error Writing Makefile for XML::XPathEngine Can't find string terminator "'" anywhere before EOF at -e line 1. Can't find string terminator "'" anywhere before EOF at -e line 1. – Cindrella Sep 27 '12 at 06:36

1 Answers1

0

You only need to ask for it :

cpanm MIROD/XML-XPathEngine-0.12.tar.gz

It will install the version you need. To find the exact path to the version you want, go to the clan website, search for the version in the left side of the page and turn to this version. You should find the "download" link that can be truncated from the PAUSE is to the archive extension and used as a parameter with your favorite cpan client.

smonff
  • 3,399
  • 3
  • 36
  • 46