<div class="gmail_quote">On Tue, Oct 20, 2009 at 1:17 AM, steve <span dir="ltr"><<a href="mailto:steve@lonetwin.net">steve@lonetwin.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hello Mark,</blockquote><div> </div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I think you might have (possibly inadvertently) messed up your python installation.<br>
<br>
Check the following:<br>
$ python --version          # should show you Python 2.6<br>
$ python -c "import sys; print sys.path"<br>
    # This should show you the places that python would look for modules such as Popen. It ideally should include '/usr/lib/python2.6/' (and '/usr/lib64/python26 if you have a x86_64 box).<br>
<br>
$ echo $PYTHONPATH<br>
    # This env variable is passed to python to modify the sys.path (mentioned above) at runtime. This should ideally not exist if you don't do any python development yourself.<br>
<br>
Let us know what you find,<font color="#888888"><br>
</font></blockquote></div><br>If I've messed up my python install, it certainly is inadvertent.  I do use python, but I've checked my root history and I've not manually installed any python packages since I installed F11.<br>
<br>The version is 2.6<br><br>To get a little cleaner list output, I ran python from root:<br><br><div style="margin-left: 40px; font-family: courier new,monospace;">Python 2.6 (r26:66714, Jun  8 2009, 16:07:26) <br>[GCC 4.4.0 20090506 (Red Hat 4.4.0-4)] on linux2<br>
Type "help", "copyright", "credits" or "license" for more information.<br>>>> import sys<br>>>> for which in sys.path:<br>...   print which<br>... <br><br>/usr/lib/python26.zip<br>
/usr/lib/python2.6<br>/usr/lib/python2.6/plat-linux2<br>/usr/lib/python2.6/lib-tk<br>/usr/lib/python2.6/lib-old<br>/usr/lib/python2.6/lib-dynload<br>/usr/lib/python2.6/site-packages<br>/usr/lib/python2.6/site-packages/Numeric<br>
/usr/lib/python2.6/site-packages/PIL<br>/usr/lib/python2.6/site-packages/gst-0.10<br>/usr/lib/python2.6/site-packages/gtk-2.0<br></div><br>The PYTHONPATH environment variable is not set<br><br>And, no, this is not a x86_64 box.<br>