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?
Asked
Active
Viewed 1,518 times
1
-
You likely need to update R. – Phil Mar 25 '22 at 15:14
-
Please check readme https://github.com/ropensci/tabulizer - requirements for Java on Windows. – Grzegorz Sapijaszko Mar 30 '22 at 21:10
1 Answers
1
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')

Konrad Rudolph
- 530,221
- 131
- 937
- 1,214