-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall_script.R
More file actions
49 lines (43 loc) · 1.72 KB
/
Copy pathinstall_script.R
File metadata and controls
49 lines (43 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# for general installation advice feel free to post on the discussion forums to request troubleshooting
# help.
# for this particular library, `sodium`, you may need to install `libsodium` manually. first try:
install.packages("sodium")
# if that doesn't work, you can manually install the library:
# - on unix systems, use apt, snap, etc to find libsodium and install the dev version
# - for Windows / OSX, see https://py-ipv8.readthedocs.io/en/latest/preliminaries/install_libsodium.html
# for this library, `RLumShiny`, you may need to install some libraries
# for one of its dependencies `terra` associated with geospatial tools
# see https://rspatial.github.io/terra/#installation
install.packages("RLumShiny")
install.packages(c(
"rmarkdown", "ape", "epicontacts", "epitrix", "readxl", "tidyverse",
"outbreaker2", "furrr", "coda", "o2ools", "mixtree",
"EpiEstim", "ggpubr", "igraph", "tidygraph",
"ggraph", "incidence2", "rio", "here", "DBI", "RSQLite",
"cleanepi", "reactable", "linelist", "EpiNow2", "cfr"
))
# somewhat lagging versions of these are also available from CRAN
install.packages(
c("epiparameter", "tracetheme", "simulist"),
repos = c("https://epiverse-trace.r-universe.dev", "https://cloud.r-project.org")
)
install.packages(
"https://github.com/reconhub/distcrete/archive/refs/heads/master.tar.gz",
repos = NULL,
type = "source"
)
# not available on CRAN
#epireview
install.packages(
"https://github.com/mrc-ide/epireview/archive/refs/heads/main.tar.gz",
repos = NULL,
type = "source"
)
#linktree
install.packages(
"https://github.com/CyGei/linktree/archive/refs/heads/main.tar.gz",
repos = NULL,
type = "source"
)
# i2extras
remotes::install_github("reconverse/i2extras", build_vignettes = TRUE)