in reply to Re: CPANPLUS with versioned Modules
in thread CPANPLUS with versioned Modules

[root@build .cpanplus]# perl -MCPANPLUS -e 'install("/P/PM/PMQS/Compre +ss-Zlib-1.42")' [ERROR] No such module '/P/PM/PMQS/Compress-Zlib-1.42'
Still doesn't work.
perl -MCPANPLUS -e 'install("Compress::Zlib")'
continues to work, but gets the latest version which I need to avoid.

Replies are listed 'Best First'.
Re^3: CPANPLUS with versioned Modules
by mishikal (Novice) on Jun 20, 2007 at 17:42 UTC
    Corion found it can be done with CPAN at least:
    perl -MCPAN -e "install(qq(P/PM/PMQS/Compress-Zlib-1.42.tar.gz))"
    Thanks!