码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2017-06-15 14:25:07      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:getc   abs   问题   描述   执行   tab   append   文件目录   port   

问题描述:

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

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

解决方法:

文件头加上:

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)

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

标签:getc   abs   问题   描述   执行   tab   append   文件目录   port   

原文地址:http://www.cnblogs.com/shellshell/p/7017068.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!