1、nohup 重定向时候,print 输出不能定向到文件
解决办法:加-u
You can run Python with the -u flag to avoid output buffering
nohup python -u fetch.py >error.txt 2>&1 &
2、后台重定向后,不响应。
比如:
python -u fetch.py 可以
nohup python -u fetch.py >error.txt 2>&1 & 就不行
还是编码问题
#-*- coding:utf-8 -*-
import sys
reload(sys)
sys.setdefaultencoding('utf8')
阅读(1232) | 评论(0) | 转发(0) |