I’m not sure if this an issue with Python only or it happens with all supported languages, anyway, here’s the problem I have:
I have installed in Mavericks the brew version of python, so I have 2 python versions, the one that comes with Mavericks and the one installed by myself (that one is installed under /usr/local). I did this because I don’t want to mess with OS X’s version of python, I use my own version to develop.
I have installed a third party module (boto) on my custom python, I’ve also modified my PATH environment variable to look first in /usr/local/bin, so my version is python is used, if I run the script I wrote from the command line it works perfectly, but when I’m trying to debug it using Komodo, I got an error:
ImportError: No module named boto.ec2.autoscale
so I guess Komodo is not honoring my PATH settings and is using the default Python version, I’ve tried to override the PATH variable in the ‘Environment’ tab in the ‘Debugging Options’ dialog box, but I still got the error.
How can I fix this?