[Pythonmac-SIG] cgiwrap and appscript

Bob Ippolito bob at redivi.com
Sun Apr 4 23:26:02 EDT 2004


On Apr 4, 2004, at 10:54 PM, Rob Bedford wrote:

> Fatal Python error: Interpreter not initialized (version mismatch?)

You have multiple versions of Python installed.  You are loading an 
extension module built for one interpreter from another, which causes 
both interpreters to be loaded at the same time but only one is 
initialized so things blow up.  This is a common problem and is 
unavoidable on OS X 10.2, but will be fixed with the next Python 
release.  The workaround is to simply.. not do that.  Try pointing your 
script to the exact same Python interpreter that you have been testing 
with, and/or remove any unnecessary Python installations from your 
system.

For more information, please read http://pythonmac.org/wiki/FAQ

-bob




More information about the Pythonmac-SIG mailing list