On 5/10/06 at 12:30 AM, Andrew Jaffe <[EMAIL PROTECTED]> wrote: > I use it for a lot of python programming, and I've noticed that the > BBEdit actually uses the wrong python interpreter: I've python 2.3 in > /usr/bin/python and python 2.4 in /usr/local/bin. Is there some way I > can tell it to use the latter for running and checking scripts?
I will be in no way offended if someone jumps in to correct me here :-), but as I recall, /usr/local/bin/ is not in the Mac OS X default $PATH, and since that's what the system will use to locate your Python. So, if you modify $PATH to include /usr/local/bin, you should be off to the races. Another idiom is to specify a shebang line that invokes /usr/bin/env python, but I don't think that's really at issue here. Hope this helps, R. -- Rich Siegel Bare Bones Software, Inc. <[EMAIL PROTECTED]> <http://www.barebones.com/> Someday I'll look back on all this and laugh... until they sedate me. -- ------------------------------------------------------------------ Have a feature request? Not sure the software's working correctly? If so, please send mail to <[EMAIL PROTECTED]>, not to the list. List FAQ: <http://www.barebones.com/support/lists/bbedit_talk.shtml> List archives: <http://www.listsearch.com/BBEditTalk.lasso> To unsubscribe, send mail to: <[EMAIL PROTECTED]>
