How do I run Python code from Sublime Text 2? How do I run Python code from Sublime Text 2? python python

How do I run Python code from Sublime Text 2?


Tools -> Build System -> (choose) Python then:

To Run:

      Tools -> Build      -or-      Ctrl + B      CMD + B  (OSX)

This would start your file in the console which should be at the bottom of the editor.

To Stop:

       Ctrl + Break or Tools -> Cancel Build       Fn + C (OSX)

You can find out where your Break key is here: http://en.wikipedia.org/wiki/Break_key.

Note: CTRL + C will NOT work.

What to do when Ctrl + Break does not work:

Go to:

Preferences -> Key Bindings - User

and paste the line below:

{"keys": ["ctrl+shift+c"], "command": "exec", "args": {"kill": true} } 

Now, you can use ctrl+shift+c instead of CTRL+BREAK


Edit %APPDATA%\Sublime Text 2\Python\Python.sublime-build

Change content to:

{    "cmd": ["C:\\python27\\python.exe", "-u", "$file"],    "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",    "selector": "source.python"}

change the "c:\python27" part to any version of python you have in your system.


On Mac OS X, save your file with a .py extension. Press + B. It runs in a window below.

enter image description here