Skip to content
Snippets Groups Projects
Commit 95b0b41c authored by David Klein's avatar David Klein
Browse files

Little corrections in tutorials/1_GettingREMIND.md

parent 30e66ada
No related branches found
No related tags found
1 merge request!130Tutorials: add missing dependencies to list of packages that are required to run REMIND.
...@@ -37,8 +37,10 @@ pkgs <- c("gdxrrw", ...@@ -37,8 +37,10 @@ pkgs <- c("gdxrrw",
"mip", "mip",
"lucode", "lucode",
"remind", "remind",
"remulator",
"lusweave", "lusweave",
"luscale", "luscale",
"magpie4",
"goxygen", "goxygen",
"luplot", "luplot",
"shinyresults") "shinyresults")
...@@ -47,7 +49,7 @@ install.packages(pkgs) ...@@ -47,7 +49,7 @@ install.packages(pkgs)
For post-processing model outputs *Latex* is required (<https://www.latex-project.org/get/>). To be seen by the model it also needs to be added to the PATH variable of your system. For post-processing model outputs *Latex* is required (<https://www.latex-project.org/get/>). To be seen by the model it also needs to be added to the PATH variable of your system.
If the following lines of code are executed withour error, then you are all set! If the following lines of code are executed without error, then you are all set!
``` r ``` r
system("gams") system("gams")
...@@ -55,7 +57,7 @@ library(gdxrrw) ...@@ -55,7 +57,7 @@ library(gdxrrw)
library(remind) library(remind)
print("") print("")
if(.Platform$OS.type == "unix") { if(.Platform$OS.type == "unix") {
system("which pdflatex") system('pdflatex -version')
} else { } else {
system("where pdflatex") system("where pdflatex")
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment