Yossi
Yossi

Reputation: 539

How to install python apscheduler on ubuntu as a daemon?

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

Answers (3)

user1159290
user1159290

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

kathryn
kathryn

Reputation: 801

You need to set the daemonic configuration option to true as per the AP Scheduler Documentation Documentation on python.org

Upvotes: 2

sam
sam

Reputation: 19164

it uses Scheduler which itself call after some schedule time. you will understand once you will go through scheduler

Upvotes: 0

Related Questions