Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

RPC-XML 0.59 Install =(

Diego Pannotia
Laronzo Fitzgerald
Join date: 14 Nov 2006
Posts: 37
02-08-2007 05:12
Hi - having a stress out here!

Trying to install RPC-XML for Perl but it tells me it requires XML::Parser ...

So, I went and got XML-Parser-2.34.. but it requires Expat...

So, I went and got Expat 2.0.0... Installed (Win-32)... XML-Parser refuses to recongnise it...

I'm thus really stuck here, All I want to do is

require RPC::XML;
require RPC::XML::Client;

in my Perl Script and I need the appropriate libraries.

Is there a package out there with EVERYTHING I need? Can anyone send me the required stuff or upload onto their server for download?

Many thanks,

Mark.
Peekay Semyorka
Registered User
Join date: 18 Nov 2006
Posts: 337
02-08-2007 05:45
The CPAN module can be used to download and install Perl modules while automatically resolving their dependencies.

$ perl -MCPAN -e 'install RPC::XML'

there is also an interactive mode:

$ perl -MCPAN -e shell
cpan> install RPC::XML

The first time you invoke CPAN it will ask you a series of questions about your environment (e.g., the location of the 'make' command, etc.)

-peekay