On Feb 5, 11:24 am, Jeremiah Coleman <[email protected]> wrote: > I'm running RHEL5, python 2.6, and both gmake and g++ are up to date. That > covers all the solutions I've found by searching, and error is still not > resolved. Any ideas? Thanks,
For RHEL5, Python 2.6 is available under /usr/bin/python26 and not / usr/bin/python. What I usually do with RHEL/CentOS 5.x is after installing `python26`, I do `mkdir $HOME/bin && ln -s /usr/bin/ python26 $HOME/bin/python && export PATH=$HOME/bin:$PATH`. You'll probably want to also append the last command to your ~/.bash_profile (or ~/.bashrc). -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
