I am creating an R package I have completed the R CMD Build and R CMD Check and removed all warnings. I am trying to install the <package>.tar.gz
on another machine to see whether it goes through fine. But I get this error
> install.packages("cricketr_0.0.9.tar.gz",repos=NULL,type="SOURCE",dependency=TRUE)
ERROR: dependencies 'dplyr', 'plotrix', 'ggplot2', 'scatterplot3d', 'forecast', 'lubridate', 'XML' are not available for package 'cricketr'
Depends:
R (>= 2.15.0)
Imports:
dplyr,
plotrix,
ggplot2,
scatterplot3d,
forecast,
lubridate,
XML
URL: https://github.com/tvganesh/cricketr
While installing on a new system from the tarball should I manually install dependent packages since it will be available once the package is in CRAN?
Any help will be appreciated