当前位置 : 主页 > 编程语言 > python >

用nohup执行python程序时,print无法输出

来源:互联网 收集:自由互联 发布时间:2022-06-15
nohup python test.py nohup.out 21 发现nohup.out中显示不出来python程序中print的东西。 这是因为python的输出有缓冲,导致nohup.out并不能够马上看到输出。 python 有个-u参数,使得python不启用缓冲。

nohup python test.py > nohup.out 2>&1 &

发现nohup.out中显示不出来python程序中print的东西。

这是因为python的输出有缓冲,导致nohup.out并不能够马上看到输出。

python 有个-u参数,使得python不启用缓冲。

nohup python -u test.py > nohup.out 2>&1 &





上一篇:python 生成requirements.txt
下一篇:没有了
网友评论