在Linux中,可以使用nohup将脚本放置后台运行,如下:
nohup
nohup python myscript.py params1 > nohup.out 2>&1 &
nohup python -u myscript.py params1 > nohup.out 2>&1 &