0

I need to run my python file once in every day on Google Compute Engine that Ubuntu 18.04 installed in it.

Mehmet Ali Bayram
  • 7,222
  • 2
  • 22
  • 27

1 Answers1

1

Use Crontab to run the script (here's the crontab documentation) and make your .py file executable with "chmod +x script.py"

Similar topics were discussed here and here.

Wojtek_B
  • 4,245
  • 1
  • 7
  • 21