如何定时执行python 脚本

2024-12-01 14:02:54
推荐回答(2个)
回答1:

windows下可以在任务计划程序中配置:

控制面板->系统和安全-> 计划任务

linux可以在使用

 crontab -e
# min hour day mon week    command
# *   *    *   *   *       python /home/yourdir/yourpf.py >> /home/youdir/log
  0   5    *   *   *       python /home/yourdir/yourpf.py >> /home/youdir/log

回答2:

win还是linux环境?
linux 写入到crontab里面
win写道task schedule