Found this one on Google.
Create the file ~/.config/sublime-text-2/Packages/Python/Python3.sublime-build :
{ "cmd": ["python3", "-u", "$file"], "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", "selector": "source.python" }
Then you can choose the Python3 build system.
If this does not work, try this :
{ "cmd": ["python3", "-u", "$file"], "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", "selector": "source.python", "encoding": "utf8", "path": "/Library/Frameworks/Python.framework/Versions/3.3/bin/" }
Ryan p
source share