I have been trying to run a Python script that updates a Twitter bot and should run every day to make a post. I can run this without any problems conventionally using terminal (I'm on Mac) and I believe this cron job should work too:
30 10 * * * cd /Users/myname/documents/Python/fpltwitterbot && /Users/myname/opt/anaconda3/bin/python main.py
Nothing happens when the script is supposed to run, no tweet, no error message, nothing.
I have followed a tutorial and given cron and terminal permissions to be able to run properly so I'm very confused.
Any help is greatly appreciated thank you :D