Summary
Launching RStudio from a specific Conda environment ensures that your R sessions use the exact package versions, dependencies, and R executable isolated within that environment.
Body
Question
How do I launch Rstudio in a conda environment from the command line?
Answer
1. Open an anaconda prompt or terminal.
2. From the command line (CLI) in the base environment, activate the conda environment you wish to use.

3. From the CLI in the activated environment, add the Rstudio executable to the path:
set path="C:\Program Files\RStudio";%path%

4. From the CLI in the activated environment, enter "rstudo" to launch.
