in reply to can't install XML::LibXML under ActivePerl
It seems you are installing modules into your system Perl. This is highly unadvisable as it may leave your system Perl in a state where your system tools cannot use it anymore. I highly recommend using your OS package manager to install modules into your system Perl.
If a module needs additional configuration input, I recommend a semi-manual installation:
cpan cpan> look XML::LibXML ... perl Makefile.PL LIBS=/usr/lib64 INC=... make make test make install
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: can't install XML::LibXML under ActivePerl
by Anonymous Monk on Mar 07, 2014 at 12:04 UTC |