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
All 2 Comments
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
It is works perfect. Thank you very much
Post a reply

Add Attachment
Submit Reply
Login to Reply