Aaaaah... That solution worked. So people installing Python form source need to know that Redhat installs python no matter what you tell it (I specified NOT to install python, but it did anyways.) This may solve some of myother problems as well. Thanks group! Michel Pelletier wrote:
Please continue to cc: the list.
-----Original Message----- From: Don Undeen [mailto:dundee@gator.net]
I installed redhat without Python, or at least I thought I did. Perhaps Something went awry during the install, and Python was installed anyways.
The redhat installer requires python.
which python tells me "/usr/bin/python"
This (probably) came with redhat.
I also have a usr/local/bin/python.
This (probably) came from your compilation from the source.
How do I find out where the Zope installer is looking?
Zope isn't looking, your shell, probaby 'bash' is. Unless you dinked with the PATH env variable, bash will find /usr/bin/python first, not /usr/local/bin/python.
FIRST make sure at least one of your pythons has sha. Run both '/usr/bin/python' and '/usr/local/bin/python' and see which one works with 'import sha'.
THEN copy the one that *does* have sha over the one that doesn't.
-Michel