This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Conda environment Rtools problem

Hello, my conda env is on win10, not linux.
I ensure there is rtools installed.

(RPlot) PS C:\Windows\system32> conda list rtools                                                                       
# packages in environment at C:\Users\m\Miniconda3\envs\RPlot:
#
# Name                    Version                   Build  Channel
rtools                    3.4.0                         0

But when I want to install package by devtools:

> devtools::install_github("caleblareau/BuenColors")
WARNING: Rtools is required to build R packages, but is not currently installed.

Please download and install Rtools custom from http://cran.r-project.org/bin/windows/Rtools/.
Downloading GitHub repo caleblareau/BuenColors@master

How to solve this problem?

r

1 answer

Install Anaconda or Minconda using:

https://www.anaconda.com/download/

and then Install rtools using:

conda install -c r rtools

Log in to answer this question.