I'm using brew which installs python (2.7.2) in /usr/local/bin/ However, the default system python (2.7.1) is executed instead at /usr/bin/, which seems to be because it doesn't obey any of the bash PATH environment variables. Also, it can't find my modules, as they are installed at /usr/local/lib/python:/usr/local/Cellar/python/2.7.2/lib/python2.7/site-packages.

I've been trying the following with Python.sublime-settings, but it doesn't work:

{
"path": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin",
"env": ["PYTHONPATH", "/usr/local/lib/python:/usr/local/Cellar/python/2.7.2/lib/python2.7/site-packages"],
"cmd": ["python", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python"
}

How can I make Sublime Text obey these environment variables? Thanks!

link|improve this question

still can't make it work, did you find a solution in the meantime? – K.-Michael Aye Mar 28 at 13:47
feedback

2 Answers

I got it by setting my paths system wide by doing the following:

## PATH
export PATH=/usr/local/bin:/usr/local/share/python:$PATH

## PYTHON
export PYTHONPATH=/usr/local/lib/python:$PYTHONPATH

# make systemwide
launchctl setenv PATH $PATH
launchctl setenv PYTHONPATH $PYTHONPATH

Edit: Damn, this doesn't work for python, just for PYTHONPATH, when I try it, it still gives the wrong python. Code used to check python binary location:

import sys, os
print os.path.dirname(sys.executable)

Edit2: Fixed this by hardlinking to the right python binary in Python.sublime-build:

{
    "cmd": ["/usr/local/bin/python", "-u", "$file"],
    "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
    "selector": "source.python"
}
link|improve this answer
I added the PYTHON now in .bash_profile, including your launchctl commands and in the Environment.plist file, but STILL both TM2 and ST2 can not find my PYTHONPATH. I want to tear my hair out... :( – K.-Michael Aye Mar 28 at 13:35
feedback

env needs to ba a JSON object, or dictionary if you will, like this:

"env":
{
    "PYTHONPATH":"/usr/local/lib/python:/usr/local/Cellar/python/2.7.2/lib/python2.7/site-packages"
},
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.