Compléments installation sous Windows

parent 8fd46fca
...@@ -86,20 +86,18 @@ sudo apt-get update ; sudo apt-get -f install # to fix possibly missing dependen ...@@ -86,20 +86,18 @@ sudo apt-get update ; sudo apt-get -f install # to fix possibly missing dependen
Some instructions on installing R and knitr must be missing. This Some instructions on installing R and knitr must be missing. This
should be tested and improved. should be tested and improved.
#+END_QUOTE #+END_QUOTE
Download and install rstudio from the [[https://www.rstudio.com/products/rstudio/download/#download][Rstudio webpage]] by choosing the - Download and install R from the [[https://cran.r-project.org/][CRAN webpage]] by choosing the right operating system.
right operating system. - Download and install Rstudio from the [[https://www.rstudio.com/products/rstudio/download/#download][Rstudio webpage]] by choosing the right operating system.
- Download and install MiKTeX from the [[https://miktex.org/download][MiKTeX webpage]] by choosing the right operating system. You will be prompted to install some specific packages when exporting to pdf.
Then open Rstudio and type the following commands in the console to - Open Rstudio and type the following commands in the console to install =knitr= and =ggplot2=:
install knitr and ggplot2:
#+BEGIN_SRC R #+BEGIN_SRC R
install.packages("knitr") install.packages("knitr", dep=TRUE)
install.packages("ggplot2") install.packages("ggplot2", dep=TRUE)
#+END_SRC #+END_SRC
* Using Git from Rstudio * Using Git from Rstudio
** Cloning a repository ** Cloning a repository
Open RStudio and do the following steps: Open RStudio and do the following steps:
- Create a new version controled project: =File / New Project / Version - Create a new version controled project: =File / New Project / Version Control=
Control=
#+BEGIN_CENTER #+BEGIN_CENTER
[[file:rstudio_images/new_project.png]] [[file:rstudio_images/new_project.png]]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment