Hi everyone!
I'm on a beginners course for data analysis, and currently installing packages. I had no problem with installing tidyverse and devtools, but wordbankr showed non-zero exit statuses on many of its sub-packages (reprex below). I have no idea what this code means, but i want to understand what happened. I know that the non-zero exit means the packages were not installed, and it can be due to unresolved dependencies. I've tried to understand what that means (something that is present in the repository but not deployment set?) but I'm not getting it.
I read that wordbankr was removed from the CRAN respository. Is this the reason for the result?
If so, do you have advice on other packages that include the same sub-packages included in wordbankr? (such as MatrixModels, SparseM, purrr, etc).
As is evident from this post, my base knowledge is just taking form, so please keep that in mind!
Thanks for your patience
devtools::install_version("wordbankr", version = "0.3.1", repos = "http://cran.us.r-project.org")
#> Downloading package from url: http://cran.us.r-project.org/src/contrib/Archive/wordbankr/wordbankr_0.3.1.tar.gz
#> MatrixModels (NA -> 0.5-2 ) [CRAN]
#> SparseM (NA -> 1.81 ) [CRAN]
#> purrr (1.0.1 -> 1.0.2 ) [CRAN]
#> quantreg (NA -> 5.96 ) [CRAN]
#> robustbase (NA -> 0.99-0 ) [CRAN]
#> RMySQL (NA -> 0.10.25) [CRAN]
#> quantregG... (NA -> 1.7-0 ) [CRAN]
#> Installing 7 packages: MatrixModels, SparseM, purrr, quantreg, robustbase, RMySQL, quantregGrowth
#> Installing packages into 'C:/rlibs/4.3.1'
#> (as 'lib' is unspecified)
#> also installing the dependency 'Matrix'
#> Warning in i.p(...): installation of package 'Matrix' had non-zero exit status
#> Warning in i.p(...): installation of package 'SparseM' had non-zero exit status
#> Warning in i.p(...): installation of package 'purrr' had non-zero exit status
#> Warning in i.p(...): installation of package 'robustbase' had non-zero exit
#> status
#> Warning in i.p(...): installation of package 'RMySQL' had non-zero exit status
#> Warning in i.p(...): installation of package 'MatrixModels' had non-zero exit
#> status
#> Warning in i.p(...): installation of package 'quantreg' had non-zero exit
#> status
#> Warning in i.p(...): installation of package 'quantregGrowth' had non-zero exit
#> status
#> Installing package into 'C:/rlibs/4.3.1'
#> (as 'lib' is unspecified)
#> Warning in i.p(...): installation of package
#> 'C:/Users/jaai/AppData/Local/Temp/RtmpgtYU3N/remotes4e0829c61df2/wordbankr' had
#> non-zero exit status
Created on 2023-08-14 with reprex v2.0.2