in reply to Eclipse and PERL

You generally can't install perl modules just by copying them around. Either use the ppm package manager (since you're on active state perl) or install perl modules directly from CPAN using the (not very windows-friendly) default techniques* (see A Practical Guide to Compiling C based Modules under ActiveState using Microsoft C++ for some more info - I don't have much experience with this)

*) i.e. untar, cd to directory, perl Makefile.PL, (n)make install

Replies are listed 'Best First'.
Re^2: Eclipse and PERL
by RaduH (Scribe) on Oct 23, 2007 at 00:01 UTC
    Well, from the CPAN pages: "Copy the module into your Perl's lib directory. That'll be one of the directories you see when you type perl -e "print qq(@INC)". "
    I already have the .pm file (the zip from CPAN does contain Expect.pm) Even more, it does NOT have source code for me to compile to begin with.
    Thanks,
    RH.
      Well, Expect seems to be perl only (no C or other code) so it may work by copying, but other stuff can go wrong that the normal installation process does or checks for; for instance, Expect requires IO::Tty and IO::Pty, so it probably won't work unless you've got those modules installed too (including their requirements recursively)

      If they're availabe, you should probably use the ppm packages for active state perl. Otherwise, for pure perl modules, you may be able to just install nmake and use that to install from CPAN directly using the CPAN shell.