I want to have a Python program run every minute using crontab, as seen in the picture.
However, it does not work. Why not?
I added an other job which prints the date and user and it works perfectly fine (I have checked it using tail -f /tmp/crontest.text
).
My lines:
* * * * * /home/pi/Labb2.py
* * * * * echo "crontest $(date) $(whoami)" >> /tmp/crontest.txt