I use Linux Mint 17.3 and recently installed Sublime Text 3 (unregistered version). In order to run python scripts in terminal (the external terminal of the OS, not the internal one of the IDE) I fount somewhere this:
Tools -> Build system -> New build system
type this:
{
"cmd": ["gnome-terminal -e 'bash -c \"python3 -u $file;echo;echo Press ENTER to exit; read line\"'"],"shell": true
}
and save it as python3.sublime-build
After that I quit sublime and relaunch it. I open a python file, then select
Tools -> Build system -> python3, and
Tools -> Build
A terminal window should appear but instead, nothing happens.
Any suggestions would be appreciated.