2

I have a code with Jupyter notebook and i would like to schedule daily running by Google Cloud.

I already created VM instance and running my code there, but I couldn't find any guide or video how to implement daily running.

So, how can I do that?

siamsot
  • 1,501
  • 1
  • 14
  • 20
Omer Falah
  • 21
  • 1
  • 2
  • See if this helps [How to run a jupyter notebook daily](https://stackoverflow.com/questions/48750055/how-to-run-a-python-jupyter-notebook-daily-automatically) – Pirate X Aug 19 '19 at 17:22

2 Answers2

2

Google is offering a product which is called AI Platform Notebooks. It is implementing lots of useful stuff like lots of open-source frameworks, CI etc. There is also a blog post by the Google Cloud that explains the product in depth and can be found here. I think you can use that to achieve what you want.

siamsot
  • 1,501
  • 1
  • 14
  • 20
0

You can use cron to schedule the notebook in the VM machine. Please take a look at nbconvert or papermill for executing notebooks.

The other ways to schedule Jupyter Notebook can be to use a web-based application for notebook scheduling:

Both of them can automatically execute the notebook in the background and share the resulting notebook as a website.

pplonski
  • 5,023
  • 1
  • 30
  • 34