Last active
November 9, 2015 08:12
-
-
Save helske/4f54adfa0a32f4e19201 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# start docker and run /bin/bash # with winpty thing use proper path instead of $(pwd) | |
docker -run -ti -v $(pwd):/mnt rocker/r-devel /bin/bash | |
# tsPI | |
# Use littler's install.r script for installing dependencies | |
install.r KFAS testthat | |
# check tsPI | |
Rdevel CMD check --as-cran tsPI_1.0.0.tar.gz | |
# Rlibeemd | |
# Use littler's install.r script for installing dependencies | |
install.r Rcpp testthat | |
apt-get install -y gsl-bin libgsl0-dev | |
# check Rlibeemd | |
Rdevel CMD check --as-cran Rlibeemd_1.3.6.tar.gz | |
# KFAS | |
# Use littler's install.r script for installing dependencies | |
install.r MASS lme4 knitr testthat | |
# check KFAS | |
Rdevel CMD check --as-cran KFAS_1.1.4.tar.gz | |
# seqHMM | |
# Use littler's install.r script for installing dependencies | |
install.r Rcpp RcppArmadillo nloptr numDeriv igraph TraMineR | |
# check seqHMM | |
Rdevel CMD check --as-cran seqHMM_1.0.1.tar.gz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment