Crontab not executing a Python script?

PythonCron

Python Problem Overview


My python script is not running under my crontab.

I have placed this in the python script at the top:

#!/usr/bin/python

I have tried doing this:

chmod a+x myscript.py

Added to my crontab -e:

SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=""

* * * * * /home/me/project/myscript.py

My /var/log/cron file says:

Sep 21 11:53:02 163-dhcp /USR/SBIN/CROND[2489]: (me) CMD (/home/me/project/myscript.py)

But my script is not running because when I check my sql database, nothing has changed. If I run it directly in the terminal like so:

python /home/me/project/myscript.py

I get the correct result.

This is the myscript.py:

#!/usr/bin/python

import sqlite3

def main():
	con = sqlite3.connect("test.db")

	with con:

		cur = con.cursor()

		cur.execute("CREATE TABLE IF NOT EXISTS testtable(Id INTEGER PRIMARY KEY, Name TEXT)")

		cur.execute("INSERT INTO testtable(Name) VALUES ('BoB')")

		cur.execute("SELECT * FROM testtable")

		print cur.fetchall()    

if __name__ == "__main__":
	main()

Per comments: Yes, /usr/bin/python exists. I can also run the python script directly using just /home/me/project/myscript.py. /usr/bin/python /home/me/project/myscript.py works. So I don't believe this is the cause?

Python Solutions


Solution 1 - Python

There are a lot of half answers across the internet so I thought I would capture this to save someone else some time.

First, cronjob does a poor job of telling you where this is failing. I recommend sending stderr output to a log file like this:

Crontab Command:

# m h  dom mon dow   command
* * * * * /path/to/your_file.sh >> out.txt  2>&1

As this is likely running the command as user, check home directory for the log file. Note this script runs every minute which is good for debugging.

The next issue is you probably have a path problem... as script likely is trying to execute from your home directory. This script sets the current directory, echos it to file, and then runs your program.

Try this :

Script File

#!/bin/sh
cd "$(dirname "$0")";
CWD="$(pwd)"
echo $CWD
python your_python_file.py

Hope this saves someone else some debugging time!!!

Solution 2 - Python

What happens when you type

/home/me/project/myscript.py into the shell?

Can you explicitly use /usr/bin/python in your crontbb command?

Can you either use an absolute path to your test.db or cd to the correct directory then execute your python script?

This is helpful to have debug statements in your python and log some data. Crontab can be very tricky to debug.

Solution 3 - Python

It is possible that the script does not start because it cannot locate the python interpreter. Crontab environment may be very different from the shell environment which you are using. The search paths may be differ significantly. Also, you test your script by starting the python interpreter explicitly while you expect the crontab to only start the script. I put this line at the top of my python scripts: > \#!/bin/env python

This line will help locate the interpreter regardless of which directory it is installed in as long as it is in the search path.

Solution 4 - Python

It's usually because the python used by crontab is different from the one you use in the shell. The easiest way to solve this is:

  1. get the python you use in the shell:
/usr/bin/python
  1. use that specific python in crontab file:

* * * * * /usr/bin/python test.py

Also want to mention that using env -i /bin/bash --noprofile --norc in the shell lets you have the same environment as the one used by crontab, and this is super helpful to debug.

Solution 5 - Python

Typically, crontab problems like this are caused by the PATH environment variable being more restrictive/different than what your normal user's PATH environment is. Since your shell uses the PATH environment to find the executable (e.g. /usr/bin/python is found in /usr/bin when you type "python" at a shell prompt), when the PATH is missing common locations, like /usr/bin or /usr/sbin, your cron job will fail. This has bit me many times. The simple fix is just to explicitly set the PATH yourself near the top of your crontab file, before any commands that need it. So, just edit the crontab as usual and add something like this near the top (if your binary is not in one of the below paths, you'll need to add it after a colon):

PATH=/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin

Alternately, just use absolute paths to your binaries and scripts in crontab.

Solution 6 - Python

I'd got the same problem. Despite the fact that the script executed manually was working, in crontab no options mentioned above were working at all. I've moved my script from /home/user/script_directory/ to /opt/scripts/ and it started to work. Possible cause of the problem should be the access (read) permissions to subfolder located in home directory.

Solution 7 - Python

Easiest way to handle this is to add your python installation's path to PATH in top of the shell script. Something like:

#!/usr/bin/env bash
export PATH="{path to your python installation}:$PATH"
python {python_file_name}.py

As @Shargors said you can test it by

env -i /bin/bash --noprofile --norc

Solution 8 - Python

Try this

* * * * * cd <directory_where_python_file_is> && bin/app etc/app_defaults.yaml

There is some path issue with cron. So when you move to directory with python file, cron works like charm!

Solution 9 - Python

If you are using anaconda for python then the path to use will be :

/home/username/anaconda3/bin/python test.py

Solution 10 - Python

While the answers here clearly delineate the problem and solution, I wanted to add another answer which helped me.

If your python script is calling a database, then be sure you can connect to the db properly within the cron env (to identify the cron env--> https://askubuntu.com/questions/23009/reasons-why-crontab-does-not-work). I had a file that would run from the shell, but not as a crontab unless I connected to the database as root from within the python script.

Solution 11 - Python

Sometimes I am facing same problem. Whatever I try something as advised here, I may not get result.

So I begin to write "trigger" bash script as follow (let's name it trigger.sh):

#!/bin/bash

/full_path/python_script.py

And I am calling trigger.sh from crontab and everything is fine.

EDIT: Of course, don't forget to do following (give execution right):

$chmod +x python_script.py
$chmod +x trigger.sh

Solution 12 - Python

Try to put in your crontab:

* * * * * python /path/to/your/script.py

rather than

* * * * * /path/to/your/script.py

Also the shebang line is #!/usr/bin/env python in some environments. env is an executable, and you have to know where it lives with "$ which env".

Solution 13 - Python

Solution 14 - Python

I was working on project that includes paramiko lib, when I run the Check_.py from cmdlin it works perfect but when I set the crontab it fails with error no module name paramiko.

So to make it short:

  • there were two different python versions installed 3.7 and 2.4, so I used whreris python3 to locate the python path /usr/local/bin/python3.7m so replacing the python with the path will solve the issue.

###Example

* * * * * cd /home/MKhair/hlthchk/BR/ && /usr/local/bin/python3.7m /home/MKhair/hlthchk/BR/Check_.py
* * * * * cd [ path-to-the-script-dir] && [path-to-python] [path-to-the-script]

Solution 15 - Python

This might be helpful for someone. I was having this same issue (or at least a similar issue) and what helped me was to get the path in which Python (Be aware of the version you want to use python, python3, etc...) by running this:

which python3

And then, I replaced python3 for the full path of python3 in my crontab file.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser1636922View Question on Stackoverflow
Solution 1 - PythonJJSanDiegoView Answer on Stackoverflow
Solution 2 - Pythondm03514View Answer on Stackoverflow
Solution 3 - PythonshargorsView Answer on Stackoverflow
Solution 4 - PythonBrianView Answer on Stackoverflow
Solution 5 - PythonJJCView Answer on Stackoverflow
Solution 6 - PythoncharkhView Answer on Stackoverflow
Solution 7 - PythonHamed MoghaddamView Answer on Stackoverflow
Solution 8 - PythonTaras VaskivView Answer on Stackoverflow
Solution 9 - PythonInderView Answer on Stackoverflow
Solution 10 - PythonMinnowView Answer on Stackoverflow
Solution 11 - PythonBrainiacView Answer on Stackoverflow
Solution 12 - PythonxbelloView Answer on Stackoverflow
Solution 13 - PythonVeerabahuView Answer on Stackoverflow
Solution 14 - PythonMohammed Khair TarigView Answer on Stackoverflow
Solution 15 - PythonDaniel CastilloView Answer on Stackoverflow