prompt.js and python
Taddeus
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?
All 2 Comments
Gio
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
Taddeus
It is works perfect. Thank you very much
Post a reply
Add Attachment
Submit Reply
Login to Reply