I need to work with the "tabulizer" library in R but when installing the package it shows me the following message: "Installing package into 'C:/Users/Usuario/Documents/R/win-library/4.1' (as 'lib' is unspecified) Warning in install.packages : package 'tabulizer' is not available for this version of R". Has anyone been able to fix this problem?
2
- You likely need to update R.Phil– Phil2022-03-25 15:14:36 +00:00Commented Mar 25, 2022 at 15:14
- 1Please check readme github.com/ropensci/tabulizer - requirements for Java on Windows.Grzegorz Sapijaszko– Grzegorz Sapijaszko2022-03-30 21:10:44 +00:00Commented Mar 30, 2022 at 21:10
Add a comment |
1 Answer
The package has been archived on CRAN due to issues with Java. For the time being, you can’t install it using install.packages.
As an alternative you can use ‘pak’, ‘remotes’ or similar to install it, e.g.:
pak::pkg_install('ropensci/tabulizer')