linux后台运行程序
一般方法:
nohup python train.py &
1
查看实时输出:
tail -f nohup.out
1
python有缓存,实时不能看到内容,可使用下列命令:
nohup python -u train.py > nohup.out 2>&1 &
1
上次更新: 2021/08/29, 2:08:00
一般方法:
nohup python train.py &
查看实时输出:
tail -f nohup.out
python有缓存,实时不能看到内容,可使用下列命令:
nohup python -u train.py > nohup.out 2>&1 &