Compress::Raw::Zlib is a prerequisite for Compress::Zlib, not a replacement. As is stated in the README for Compress::Zlib.
Also, the error messages you got while compiling Compress::Zlib might be helpful. Please include them in your post.
| [reply] |
Apologies, I don't have the errors anymore. When I try doing install Compress::Zlib it says it's up to date, and if I force install all tests (aside from ones it skips) are successful. I'm really confused as to why I get Can't locate Compress/Zlib.pm in @INC after installing it with CPAN.
I don't know how to remove modules installed with CPAN, otherwise I would reinstall them for the error messages.
| [reply] |
Download the tarball from search.cpan.org and do the usual
tar zxf Tarball-VERSION.tar.gz
cd Tarball-VERSION
perl Makefile.PL
make
make test
followed by
make install
if all the tests succeed (you can usually ignored skipped tests). Repeat the process for each module until something fails. Also, check the README files included with the modules - they usually contain installation tips.
| [reply] [d/l] [select] |