From 660d9e92fd9af2ce71cc2c7183d1d7ef419b65bb Mon Sep 17 00:00:00 2001 From: Julian Karch Date: Tue, 19 Dec 2023 21:45:59 +0100 Subject: [PATCH] added tools in init --- init.R | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/init.R b/init.R index df3c4f0..c00b15f 100644 --- a/init.R +++ b/init.R @@ -1,3 +1,4 @@ -install.packages("pkgload") -install.packages("remotes") +if (!require(pkgload)) install.packages("pkgload") +if (!require(remotes)) install.packages("remotes") +if (!require(tools)) install.packages("tools") remotes::install_deps() \ No newline at end of file