Bot::BasicBot install problems

Ask a Question related to PERL Modules, Design and Development.

  1. #1

    Default Bot::BasicBot install problems

    Hi there,

    I excuse for being a newbie to Perl-modules; however, not to Perl.
    That said, I have the following problem: I want to install the Bot::BasicBot
    package to my Linux system (Suse 10), however the installation isn't really
    straightforward. It seems to need a lot of other modules, which the
    installation simply does not fetch automatically. It needs POE:: stuff, and I
    don't know which, and where to get it.
    Isn't there any easy way to install Bot::BasicBot and all its needed modules
    in one swoop? I always use the usual

    perl Makefile.PL
    make
    make install

    but that just doesn't do it all.

    Thanks for your help...

    Alexander Oberhuber Guest

  2. Similar Questions and Discussions

    1. INSTALL Problems on OSX
      I tried to install coldfusion-61-other.jar for OSX but when I double clicked - it said install on the file menu - but nothing else and no window...
    2. CF7 Install Problems STILL!
      Has anyone figured out the solution to this "bad download" problem. I see posts from the 9th of February and the same problem still exists. I've...
    3. [PHP] Install problems (GD) on Red Hat
      I am trying to install php-5.0.0b1 on a Red Hat 9.0 box. I had recently had it installed with apache but did not have gd support. Now that I need it...
    4. more install problems
      Okay, this supersedes the previous. I have succeeded in installing Woody on the Thinkpad, using the 'dummy' network interface. A stack of errors...
    5. Install Problems
      I'm trying to install debian 3.0 woody on a Dell PE1400 with a MegaRaid Pci card installed. I get the install to load the module (megaraid.o) off...
  3. #2

    Default Re: Bot::BasicBot install problems

    In article <11e2e$4444b78b$506ddbc2$26513@news.chello.at>, Alexander
    Oberhuber <aloh@x-mail.net> wrote:
    > Hi there,
    >
    > I excuse for being a newbie to Perl-modules; however, not to Perl.
    > That said, I have the following problem: I want to install the Bot::BasicBot
    > package to my Linux system (Suse 10), however the installation isn't really
    > straightforward. It seems to need a lot of other modules, which the
    > installation simply does not fetch automatically. It needs POE:: stuff, and I
    > don't know which, and where to get it.
    > Isn't there any easy way to install Bot::BasicBot and all its needed modules
    > in one swoop? I always use the usual
    >
    > perl Makefile.PL
    > make
    > make install
    >
    > but that just doesn't do it all.
    There is a CPAN module that will install prerequisite modules for you.
    Use this command to run the CPAN shell:

    sudo perl -MCPAN -e shell

    and, if it is the first time you run this command, answer the
    questions. Most of the defaults work. Pay attention to the dependencies
    question and answer appropriately (can't remember exactly what the
    question or answers are, however).
    Jim Gibson Guest

  4. #3

    Default Re: Bot::BasicBot install problems

    Jim Gibson wrote:
    > In article <11e2e$4444b78b$506ddbc2$26513@news.chello.at>, Alexander
    > Oberhuber <aloh@x-mail.net> wrote:
    >
    >
    >>Hi there,
    >>
    >>I excuse for being a newbie to Perl-modules; however, not to Perl.
    >>That said, I have the following problem: I want to install the Bot::BasicBot
    >>package to my Linux system (Suse 10), however the installation isn't really
    >>straightforward. It seems to need a lot of other modules, which the
    >>installation simply does not fetch automatically. It needs POE:: stuff, and I
    >>don't know which, and where to get it.
    >>Isn't there any easy way to install Bot::BasicBot and all its needed modules
    >>in one swoop? I always use the usual
    >>
    >>perl Makefile.PL
    >>make
    >>make install
    >>
    >>but that just doesn't do it all.
    >
    >
    > There is a CPAN module that will install prerequisite modules for you.
    > Use this command to run the CPAN shell:
    >
    > sudo perl -MCPAN -e shell
    >
    > and, if it is the first time you run this command, answer the
    > questions. Most of the defaults work. Pay attention to the dependencies
    > question and answer appropriately (can't remember exactly what the
    > question or answers are, however).
    With a reasonably current CPAN, you get a stub script called cpan which
    is equivalent to all of the above but 'sudo'.

    You may _not_ want to sudo cpan, because of problems with the ownership
    of your gpg key file, if any. When you configure CPAN, you will get the
    opportunity to tell it to 'sudo make' on the install, instead of just
    'make'.

    [url]http://mirrors.cpan.org/[/url] has information to help you pick your list of
    mirrors.

    Tom Wyant
    harryfmudd [AT] comcast [DOT] net Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139