linux下执行Python项目,crontab不能定时执行任务

时间:2022-05-05 20:55:06

问题描述:

在项目下的文件执行脚本,可以手动执行

在其他文件目录下,手动执行脚本报错误,提示不存在该模块。

解决方法:

文件头加上:

import sys
import os
sys.path += [
os.path.dirname(os.getcwd()),
os.getcwd()
]
curPath = os.path.abspath(os.path.dirname(__file__))
rootPath = os.path.split(curPath)[0]
sys.path.append(rootPath)