Buat lingkungan anaconda

conda create -n <env_name> r-essentials r-base
#<env_name> is the personal name you give to your environment.
#This creates a new conda environment with all the r-essentials conda packages 
#built from CRAN
Kwams