Reputation: 539
I would like to know how do i install python apscheduler on linux Ubuntu as a daemon? i have read the manual in here but i didn't understand how can i install it as daemon.
I wish to install it like a service and then attach (plug-in) to it all sorts of jobs.
any help?
Upvotes: 1
Views: 3386
Reputation: 1003
This worked for me regarding the installation:
sudo apt-get -y install python-pip
pip install apscheduler
Then set the daemonic configuration option to true when using the apscheduler itself, as mentioned above by @kathryn.
Upvotes: 0
Reputation: 801
You need to set the daemonic configuration option to true as per the AP Scheduler Documentation Documentation on python.org
Upvotes: 2
Reputation: 19164
it uses Scheduler which itself call after some schedule time. you will understand once you will go through scheduler
Upvotes: 0