If I run a system command in Jupyter Notebook I would expect that log messages of my console application are shown "immediately" in the notebook. However, it seems that they only occur after the complete process has been finished.
I tried
!D:/long_running_executable_with_log_messages.exe
and
import os
os.system('D:/long_running_executable_with_log_messages.exe')
=>How can I get the output of the system command continuously?
Related question: