I recently installed python 2.6.5 over 2.6.1 on OS X. Everything works fine except when I try executing python scripts via the Applescript editor. If I execute the following line I get version 2.6.1:
Applescript:
do shell script "python -c \"from sys import version; print version\""
But if I execute the similar line in the OS X terminal i get version 2.6.5:
OS X terminal:
python -c "from sys import version; print version"
What could be wrong? Can this somehow be easily fixed?