I installed Python 2.7.12 with Brew on my Mac (Mac OS Sierra 10.12.1) and set my Path to /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
. Everything just works fine: python --version
in the terminal gives me 2.7.12.
For coding I installed Coderunner2. In Preferences > Advanced I get the exact same PATH: Screenshot
But when I run
#!/usr/local/bin/python
import platform
print platform.python_version()
in Coderunner, it gives me 2.7.10.
What am I missing here? Why isn't Coderunner using Python 2.7.12?