Skip to content

Commit

Permalink
🐛 installation des librairies spatiales
Browse files Browse the repository at this point in the history
  • Loading branch information
vcameron1 committed Dec 16, 2024
1 parent f6a7b4b commit 2790f0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ deploy:
done

install:
Rscript -e 'if (!require(rmarkdown)) install.packages("rmarkdown"); if (!require(knitr)) install.packages("knitr"); if (!require(xaringan)) install.packages("xaringan"); if (!require(RSQLite)) install.packages("RSQLite"); if (!require(RPostgreSQL)) install.packages("RPostgreSQL"); if (!require(ggplot2)) install.packages("ggplot2"); if (!require(reshape2)) install.packages("reshape2"); if (!require(knitr)) install.packages("knitr");'
Rscript -e 'if (!require(pak)) install.packages("pak"); (!require(rmarkdown)) pak::pak("rmarkdown"); if (!require(knitr)) pak::pak("knitr"); if (!require(xaringan)) pak::pak("xaringan"); if (!require(RSQLite)) pak::pak("RSQLite"); if (!require(RPostgreSQL)) pak::pak("RPostgreSQL"); if (!require(ggplot2)) pak::pak("ggplot2"); if (!require(reshape2)) pak::pak("reshape2"); if (!require(knitr)) pak::pak("knitr"); if (!require(sf)) pak::pak("sf"); if (!require(terra)) pak::pak("terra");'

clean:
rm $(HTML)
Expand Down

0 comments on commit 2790f0b

Please sign in to comment.