Error installing RQDA: unable to access index for repository NA/src/contrib:

I've downloaded GTK+ and installed it.

When I run install.packages(c('blob','RSQLite','RQDA')), or install.packages("RQDA",dependencies=c("Depends", "Imports"))

I get this same error:

Warning in install.packages : unable to access index for repository NA/src/contrib: scheme not supported in URL 'NA/src/contrib/PACKAGES' Warning in install.packages : packages ‘blob’, ‘RSQLite’, ‘RQDA’ are not available (for R version 3.6.3) Warning in install.packages : unable to access index for repository NA/bin/windows/contrib/3.6: scheme not supported in URL 'NA/bin/windows/contrib/3.6/PACKAGES'

What's the problem and what can I do?

Upvotes: 1

Views: 552

Answers (1)

Nate Breznau
Nate Breznau

Reputation: 21

RQDA cannot be installed directly since R 3.6, I understand. However, @BroVic developed an R package to install all the necessary dependencies (some not a part of R) called RQDAassist. I'm on Windows 10 and running R 4.1 and this worked for me:

# install.packages("devtools")

devtools::install_github("BroVic/RQDAassist")

RQDAassist::install()

Then you can simply launch RQDA from the console or in a md file

library(RQDA)

Upvotes: 2

Related Questions