You are going about it the wrong way, esp. on Windows. Some Perl modules are pure-perl, and like the perl scripts you might write, they are just plain text. Installing them is just a matter of copying them into the correct directories, easily achieved by
perl Makefile.PL
make
sudo make install
Other modules, however, have C/C++ code in them, and need to be compiled. Since most all Win boxes do not have a compiler, you need to download pre-compiled versions. Use ppm, your perl package manager (Win equivalent of cpan), install modules on Windows.
Now, ActiveState's ppm point's to ActiveState's ppm repositories, which do not have all the modules compiled and ready. You might have to hunt down specific ones (Randy Kobes archive at theory.uwinnipeg.edu seems to have most). Then you have to point your ppm to that repository.
Read the ppm help.
--
when small people start casting long shadows, it is time to go to bed
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.