I work on two computers, I have Sublime Text 3 and Python 2.7 on both of them.
Recently, without changing any configuration (except maybe installing some packages like ANACONDA for ST3), when I build my python code on Sublime Text 3: e.g.,
print 'Hello world'
Console output is just showing:
[Finished in 0.1s]
And nothing more, (I want to see the printed text), this is quite irritating because for the life of me I can't figure out how to solve this.
A related and perhaps identical problem is experienced by @Jens_Leersen. I've tried the answer contained in @radioxoma 's answer but to no avail.
pythonexecutable in yourPATH? Did you choose the Python build system before building? Are there any errors or messages in the console?PATHdefined in the environment variables. and yes I chose python on the build system. No errors just the message[Finished in 0.1s]Example of a program with multiple prints link