This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# `How to execute the `make` command successfully.` | |
To do this, we shall have to install conda, and I believe it has already been installed, and if it has not, you can go to [Miniconda's](https://docs.conda.io/en/latest/) page, and install the required version. | |
If you are using a Linux or MacOS system, i believe that you have [Bash](https://www.gnu.org/software/bash/) installed on your system. | |
We first create an environment called, markdown2 as we are using `R` and after that we activate it after. We do this by: | |
``` | |
conda create -a rmarkdown2 r-base=4.1.1 | |
conda activate rmarkdown2 | |
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# `How to execute the `make` command successfully.` | |
To do this, we shall have to install conda, and I believe it has already been installed, and if it has not, you can go to [Miniconda's](https://docs.conda.io/en/latest/) page, and install the required version. | |
If you are using a Linux or MacOS system, i believe that you have [Bash](https://www.gnu.org/software/bash/) installed on your system. | |
We first create an environment called, markdown2 as we are using `R` and after that we activate it after. We do this by: | |
``` | |
conda create -a rmarkdown2 r-base=4.1.1 | |
conda activate rmarkdown2 | |
``` |