Linux笔记-结合nohup执行Python脚本时同步输出结果
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
在Linux中,可以使用nohup
将脚本放置后台运行,如下:
nohup python myscript.py params1 > nohup.out 2>&1 &
但直接使用上面代码,无法在程序运行过程中查看Python中的print "computing"
输出结果,比如在每次循环中使用print
语句等。原因是python的输出有缓冲,导致nohup.out不能够马上看到输出。
解决方法:
- 使用-u参数,使得python不启用缓冲。
修改命令如下:
nohup python -u myscript.py params1 > nohup.out 2>&1 &
这样就可以同步看到输出结果了。
GitHub 加速计划 / li / linux-dash
6
1
下载
A beautiful web dashboard for Linux
最近提交(Master分支:3 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献7条内容
所有评论(0)