how to run a python jupyter notebook daily automatically

后端 未结 7 894
无人共我
无人共我 2020-12-14 08:35

I have a code in a python jupyter notebook but i need to run this every day so I would like to know if there\'s a way to set this, I really appreciate it

相关标签:
7条回答
  • 2020-12-14 09:16

    you can add jupyter notebook in cronjob

    0 * * * * /home/ec2-user/anaconda3/bin/python /home/ec2-user/anaconda3/bin/jupyter-notebook
    

    you have to replace /home/ec2-user/anaconda3 with your anaconda install location, and you can schedule time based on your requirements in cron

    0 讨论(0)
提交回复
热议问题