`ruODK` not available on CRAN.

The recommended package for linking ODK to R ruODK is not availble on CRAN. Is there an updated version? What package can be used instead? I want to download data directly from ODK to R Studio/Posit without using a local folder on my computer.

You should be able to get it from ruODK

uploading manually is not successful and this message is displayed
Warning in install.packages :
installation of package ‘/home/r1421030/R/Packages/ruODK_1.4.0.tar.gz’ had non-zero exit status

Can you give us the complete output? There often is a clue in it about how to cure the problem.

Hello jrkrideau. Here is the output I am receiving when manually installing

> install.packages("~/R/Packages/ruODK_1.4.0.tar.gz", repos = NULL, type = "source")
Installing package into ‘/cloud/lib/x86_64-pc-linux-gnu-library/4.1’
(as ‘lib’ is unspecified)
ERROR: dependencies ‘clisymbols’, ‘janitor’ are not available for package ‘ruODK’
* removing ‘/cloud/lib/x86_64-pc-linux-gnu-library/4.1/ruODK’
Warning in install.packages :
  installation of package ‘/home/r1421030/R/Packages/ruODK_1.4.0.tar.gz’ had non-zero exit status
> 

And here is the one I am receiving when installing "from CRAN"

> install.packages("ruODK")
Installing package into ‘/cloud/lib/x86_64-pc-linux-gnu-library/4.1’
(as ‘lib’ is unspecified)
Warning in install.packages :
  package ‘ruODK’ 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
https://cran.r-project.org/doc/manuals/r-patched/R-admin.html#Installing-packages
> 

i am using R Cloud
Thank you.

It does not appear to be on CRAN.

As a first guess, it looks like two needed packages are not installing automatically. I would suggest trying.

 install.packages("clisymbols") 
 install.packages("janitor") 

and then trying to install {ruODK}.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.