in reply to Re: JSON 2.5 2.90
in thread JSON 2.5 2.90

perl.exe -e "use JSON; JSON->VERSION(2.5);" Can't locate JSON/XS.pm in @INC (you may need to install the JSON::XS +module) (@INC contains: c:/Software/Perl5.18/site/lib c:/Software/Per +l5.18/lib .) at (eval 4) line 2. BEGIN failed--compilation aborted at (eval 4) line 2. at -e line 1. Compilation failed in require at -e line 1. BEGIN failed--compilation aborted at -e line 1.

Replies are listed 'Best First'.
Re^3: JSON 2.5 2.90
by ikegami (Patriarch) on Mar 27, 2014 at 17:41 UTC
    You are explicitly requesting that JSON uses JSON::XS instead of JSON::PP (by setting env var PERL_JSON_BACKEND to JSON::XS), but you don't have JSON::XS installed.