The forum is read-only. New threads, replies and edits are disabled.
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?
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