Hey Guys,
Sorry I haven't responded in a while but I finally just finished up my Gtk2 UI for my Perl script.
My script won't run..! Ughh.... I don't know what I'm doing wrong....?
So I downloaded and installed ActivePerl which all went just fine. Now I tried installing Gtk2 but my
script won't execute still. First I tried from CPAN but I think it failed then I searched for Gtk2 in the
PPM GUI that comes with the ActivePerl install, but it could not find Gtk2 package.
But then I found this package in PPM
Bundle-Gnome2 which has the description "A bundle to install all
the Gtk2 and Gnome2 modules". So I installed that.
And after installing that and I try to run my script I get this error:
        "Can't locate Gtk2.pm in @INC (@INC contains: C:/Perl/site/lib C:/Perl/lib .) "
Then since that didn't seem to work, I found someone who wrote this script below to install Gtk2. I ran that
and as I watched it go through it seemed to NOT fail on anything. And since I right-clicked the script and did
'Open With: Perl Command Line Interpreter' as soon as it finished it automatically closed the term window so not
sure what happened at the end...?
#!/usr/bin/perl
use strict;
use warnings;
use CPAN;
CPAN::Shell->install(
"Test::Harness",
"Test::More",
"Test::Number::Delta",
"File::Spec",
"Pod::Man",
"Pod::Simple",
"Text::Wrap",
"Pod::Escapes",
"ExtUtils::MakeMaker",
"ExtUtils::PkgConfig",
"ExtUtils::Depends",
"Cairo",
"Glib",
"Pango",
"Gtk2");
So I'm kinda stuck here and I'm not sure what I'm doing wrong...?
Any help would be greatly appreciated.
Thanks in Advance,
Matt
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.