I'm on an OSX machine using UNIX. I have a Python program that I want to run every hour or so, so I've set up a basic cron command in my editor:
0 * * * * python Documents/workspace/programfolder/src/ProgramToRun.py
I haven't actually tried this yet because I'm already running into issues. I've tried to just run the python Documents/workspace/programfolder/src/ProgramToRun.py command from my home directory, but the script fails to find any of the files in its directory that it depends upon. It is as though the program is somehow running in my home directory and cannot find any of its dependencies. If I cd into the folder where the program is located and do python ProgramToRun.py, it works fine. So my question is how can I get cron to treat this program like I'm running it from its directory? And would the directory I've given even work, or would I need to give something more absolute like /Users/MyName...etc.?

scriptdir=$(cd $(dirname $0); pwd)or in your case it would becd $(dirname $0)– sotapme Feb 1 at 19:23croninstead oflaunchdon OS X? Just about every piece of documentation that mentionscronstarts with something like "Note: Although it is still supported, cron is not a recommended solution. It has been deprecated in favor of launchd.". If you already knowcronwell, that's a good reason to use it, but otherwise, why? – abarnert Feb 1 at 21:13