For some reason my R script will not run with a crontab. I have it for every minute right now for testing, but will change it once it works.
Any ideas?
* * * * * Rscript “/Users/Home/Desktop/David Studios/Scraper/compiler.R”
Also, this was working as just a normal command in Terminal.
In recent versions of RStudio (0.99. 893 or later), select Addins and next select 'Schedule R scripts on Windows'. This will allow you to select a script to be scheduled at your specified timepoints. The script will be copied to the Rscript repo folder and will be launched from there each time.
I can see the dreaded smart quotes in your cron entry. This often happens when you copy-paste from word processors. Backspace over those abominations and re-type normal quotes. Change:
* * * * * Rscript “/Users/Home/Desktop/David Studios/Scraper/compiler.R”
to
* * * * * Rscript "/Users/Home/Desktop/David Studios/Scraper/compiler.R"
See the difference? It's subtle and easy to miss.
I see you've made the above change and it's still not working for you. Verify that Rscript
is in the $PATH
environment variable for the user that owns this crontab. Alternatively, you can simply specify the fully qualified path to Rscript
directly in the cron entry. You can find that quickly on the command line with the following command:
which Rscript
I see by your comments that the fully qualified path to Rscript
is /usr/local/bin/Rscript
. I'm guessing /usr/local/bin
is not in the path for the user who owns this crontab. Try using the fully qualified path, like this:
* * * * * /usr/local/bin/Rscript "/Users/Home/Desktop/David Studios/Scraper/compiler.R"
Check that you are really running crontab deamon. You should get a number as return, which is the process id for crontab.
pgrep cron
Make sure your R file is execuable:
sudo chmod +x [yourfile.R]
Add the shebang line in your R file:
#!/usr/local/bin/Rscript
Let crontab do the change of directory:
* * * * * cd /Users/Home/Desktop/David Studios/Scraper/ && /usr/local/bin/Rscript compiler.R
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With