I am trying to install catboost package in R in Google notebook but getting below message
Warning message:
“package ‘catboost’ is not available for this version of R
A version of this package for your version of R might be available elsewhere,
see the ideas at
Hi @harnagpal
Within your install_packages
function could you add the following:
BINARY_URL="https://github.com/catboost/catboost/releases/download/v0.12.1/catboost-R-Linux-0.12.1.tgz"
devtools::install_url(BINARY_URL,args = c("--no-multiarch"))
That might do the trick! if not please reply here and we will sort it out