When i run python progam from prompt.js i dont see no output. But the program is running in bacground.
I see in the example video that you use python too, can you make work with prompt.js please?
prompt.js and python
Taddeus April 10th, 2014
All 2 Comments
Gio April 10th, 2014
The runtime library used by Python buffers its output by default when connected to a pipe - you have to tell it to unbuffer it.
In other words, use the -u option:
python -u yourProgram.py
In other words, use the -u option:
python -u yourProgram.py
Taddeus April 11th, 2014
It is works perfect. Thank you very much
Post a reply
Add Attachment
Submit Reply
Login to Reply