+ 2

How to run a Python script on Startup?

I have a Python script and I want it to run in startup like most of my programs do for example torrent/antivirus/etc. How to make it possible?

11th May 2017, 12:44 AM
Goutam Bose
Goutam Bose - avatar
3 ответов
+ 3
on Linux you can add a task in crontab like 15 * * * * /usr/bin/env python <your scrict path> on windows you can add task in admin tools>task manager with a bat job
11th May 2017, 10:21 AM
Damon RealMen
Damon RealMen - avatar
+ 2
turn the executable bit on. then follow your operating system's method of adding things to be run on startup.
11th May 2017, 2:16 AM
Venkatesh Pitta
Venkatesh Pitta - avatar
+ 1
hey thanks for the answer.
11th May 2017, 8:54 AM
Goutam Bose
Goutam Bose - avatar