标签:方法 python span export enc 网上 pre tab pytho
使用网上的方法,在crontab中加入PYTHONIOENCODING=utf-8,并没有解决。
PYTHONIOENCODING=utf-8
有效解决办法:
* * * * * export LANG=zh_CN.utf-8;python yourScipt.py
在调用python脚本前先export LANG变量,他修改的是crontab运行环境变量,也不会对原本环境产生影响。
SUSE crontab调用python报ascii编码错误
原文地址:https://www.cnblogs.com/Justintime/p/14817552.html