解决nohup重定向python输出到文件不成功的问题
原因是:
Itlookslikeyouneedtoflushstdoutperiodically(e.g.sys.stdout.flush()).InmytestingPythondoesn'tautomaticallydothisevenwithprintuntiltheprogramexits. YoucanrunPythonwiththe-uflagtoavoidoutputbuffering
所以,
解决办法之一:加-u
nohuppython-uBilstm-My-Exp-Char.py--training1--char_base1--window5--rnn_activerelu--data_root../../wangzhen/bilstm/--load_embed1--model_pklmdl5-15-14-30>5.txt2>&1&
解决办法之二:sys.stdout.flush()
以上这篇解决nohup重定向python输出到文件不成功的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。