Last active
December 3, 2020 01:17
-
-
Save M3nin0/7f9f2331bc4178773050db7dad0d5d5c to your computer and use it in GitHub Desktop.
R Script to install e-sensing/sits package
This file contains hidden or 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
| chooseCRANmirror(graphics=FALSE, ind=1) | |
| # Install devtools, rmarkdown, knitr, testthat and Rcpp if not already available | |
| install.packages(c("devtools", "rmarkdown", "Rcpp", "knitr", "testthat", "remotes")) | |
| # Please install the Suggested packages that are used by sits | |
| install.packages(c("DBI","dendextend", "dtwclust","dtwSat", "e1071", "flexclust", | |
| "imager", "imputeTS", "kohonen", "lwgeom", "MASS", "methods", | |
| "mgcv", "nnet", "proto", "proxy", "ptw", "ranger", "RCurl", | |
| "RSQLite", "signal", "xgboost", "zoo", "randomForest", "desc")) | |
| remotes::install_github("rstudio/reticulate@7174f745626d3e71a9527a96d56075a729b6506e") | |
| remotes::install_github("rstudio/keras@aaddf0e411f66d48f88f858d1436c1d38e13fb97") | |
| library(keras) | |
| remotes::install_github("e-sensing/wtss@cc3077a527e4e879b54ad5491775d196b9ad1007") | |
| library(wtss) | |
| remotes::install_github('e-sensing/sits@3175e1b40bf1f8873cbece6e3b85584b93d5642e') | |
| library(sits) | |
| remotes::install_github("e-sensing/inSitu@772e0dda670d7bb5afcf68473b124287387be87a") | |
| library(inSitu) | |
| # install rstac | |
| devtools::install_github("brazil-data-cube/rstac") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment