Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Note in R CRAN check -- * checking top-level files ... NOTE File README.md cannot be checked without ‘pandoc’ being installed

I am checking my R package for CRAN submission, but there is one NOTE that I cannot get rid of. I googled it but seems this NOTE is not common thus I didn't find much useful information. Could any one provide me with a solution? Below is part of the output from R CMD check --as-cran.

* using R version 3.2.0 (2015-04-16)
* using platform: x86_64-apple-darwin13.4.0 (64-bit)
* using session charset: UTF-8
* using option ‘--as-cran’
...
...
* checking DESCRIPTION meta-information ... OK
* checking top-level files ... NOTE
File README.md cannot be checked without ‘pandoc’ being installed.
* checking for left-over files ... OK
* checking index information ... OK
like image 769
SixSigma Avatar asked Sep 12 '15 16:09

SixSigma


1 Answers

You can install pandoc from within R using install.pandoc() from the installr package.

like image 89
Sam Firke Avatar answered Nov 13 '22 06:11

Sam Firke