in reply to Can't locate loadable object for module JSON::XS in @INC

Since that's an XS module, it contains code that must be compiled, so you won't be able to just add the .pm files to the proper directories in this case. This documentation should help point you in the right direction for how to install CPAN modules on your version of Perl.

  • Comment on Re: Can't locate loadable object for module JSON::XS in @INC

Replies are listed 'Best First'.
Re^2: Can't locate loadable object for module JSON::XS in @INC
by newperlguy (Initiate) on Oct 31, 2011 at 02:40 UTC
    thx for the info. there's no binary that I can just download ? thx

      Some distributions of Perl (including ActiveState Perl and Strawberry Perl) include a utility called PPM, which allows you to install the necessary scripts and binaries for the module without needing to compile anything.

        thx. I'll give that a shot.