Skip to content

Instantly share code, notes, and snippets.

@ijxsid
Created October 25, 2014 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ijxsid/363b8c21c5d9a9bccd41 to your computer and use it in GitHub Desktop.
Save ijxsid/363b8c21c5d9a9bccd41 to your computer and use it in GitHub Desktop.
Setting up the New Python 3 Build system in Sublime Text 2
Go to Tools>Build System>New Build System
It Opens a file untitled.sublime-build
Then copy the following JSON to it:
{
"cmd": ["c:/Python34/python.exe", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python"
}
Then save and rename file as "python3.4.sublime-build"
Original source:http://stackoverflow.com/questions/23730866/set-up-python-3-build-system-with-sublime-text-3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment