How do I schedule a python script using cron on OS X Catalina
问题 So i'm trying to setup a cron job in Mac OS X Catalina 10.15.3. For some reason I can get my python script running. I setup a test job under it and that one works perfectly. * * * * * python3 /Users/eric/Dropbox/python/Print/New\ Orders/funcs.py * * * * * echo 'hello' >> //Users/eric/Desktop/test/test.txt `` the echo is running every minute but for some reason I cant the the python file to run. 回答1: The safest option is the put the full path to the script. For your specific case you can find