Reputation: 1691
I downloaded Sublime Text 3 and now I am trying to run a simple python code in it. The code seems to have run when I run Command + B
, but I don't see any output:
I am on Mac OS X El Capitan. I can't seem to see what's the issue here. Sublime has always printed the output for correctly formatted python code.
Upvotes: 1
Views: 2484
Reputation: 76
You are likely using the python syntax check, press COMMAND+SHIFT+B to select what to build with, select python and after that COMMAND+B should work as you expected. Alternatively go under tools/Build with.
Upvotes: 2