Results 1 to 2 of 2

Thread: Missing XML::Simple

  1. #1
    Join Date
    Sep 2012
    Beans
    11

    Missing XML::Simple

    Hi, I'm trying to install GCstar and managed to correct all of the missing mandatory components except for XML::Simple. Is there any way that I can tell if this is installed? And if not than what's the best way to install XML::Simple?

    I come here as a last resort, I've been googling for at least an hour. Maybe someone can help?

  2. #2
    Join Date
    Nov 2009
    Location
    Australia
    Beans
    57
    Distro
    Ubuntu

    Re: Missing XML::Simple

    The quickest way to check is to run the following on the command.
    Code:
    perl -e 'use XML::Simple'
    if you get a 'Cant Locate..' message then it's not installed in any of the places that Perl expects it to be in, if you get no messages, then it has been installed.

    To install it yourself, you can either go to the Package Manager and install 'libxml-simple-perl', or alternately you can install it from the CPAN web site using the command-line ..
    Code:
    sudo perl -MCPAN -e 'install XML::Simple'

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •