Okay if you are running Fedora core gcc should be there it probably is just not in your path.

From command line type this: which gcc
if it does not find it that means it is not in your path

to see where gcc is on your system type this find / -name gcc

If you are running Fedora Core it is there somewhere you just need to add it to your path.

to see that is currently in your path type echo $PATH

gcc should be in /usr/bin by default so I it is strange that it would not already be in your path but whereever the find / -name gcc command turns it up you need to add it to your path here is an example of how I add just /usr/local to my path
[jschmitz@www bin]$ echo $PATH /usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/usr/local/java/bin:/usr/l +ocal/ant/bin:/home/jschmitz/bin [jschmitz@www bin]$ PATH=/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/ +usr/local/java/bin:/usr/local/ant/bin:/home/jschmitz/bin:/usr/local (I added /usr/local to the end here) [jschmitz@www bin]$ export PATH [jschmitz@www bin]$ echo $PATH /usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/usr/local/java/bin:/usr/l +ocal/ant/bin:/home/jschmitz/bin:/usr/local [jschmitz@www bin]$
If gcc turns out to really not be there at all you can grab it from http://www.rpmfind.net and install the rpm in a snap like so
rpm -Uvh "name of file"

Cheers!

Jeffery

In reply to Re: Trying to log in to Yahoo with Perl script by JSchmitz
in thread Trying to log in to Yahoo with Perl script by no21

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.