How to run in crontab
*/1 * * * * /home/user/Desktop/job/dp/ python manage.py statistics
with virtual env? I need to activate virtualenv first(Otherwise it does not work)
This is my virtual env:
source job/bin/activate
|
How to run in crontab
with virtual env? I need to activate virtualenv first(Otherwise it does not work) This is my virtual env:
|
|||
|
|
|
EDITED: Try something like this:
This should be read as: activate the env and if that was successful, excute the manage.py script. Since manage.py is supposed to have a python shebang and the virtual env sets the correct python interpreter, this should work. Apparently cron usually runs with
Read more about this issue at:
http://codeinthehole.com/writing/running-django-cronjobs-within-a-virtualenv/
The article doesn't mention that |
|||||
|
|
Use something like In your situation it will look like
|
|||
|
|