I\'m trying to get cron to call in the correct PATHs. When I run a Python script from shell the script runs fine as it uses the PATHs set in bashrc but when I use cron all t
Set the required PATH in your cron
crontab -e
Edit: Press i
i
PATH=/usr/local/bin:/usr/local/:or_whatever 10 * * * * your_command
Save and exit :wq
:wq