Windows 10, R v4.2.2
I am trying to install an old version of wdman in order to hopefully resolve an issue that I am having with Rselenium. I have tried updating all dependencies and am still not able to download the older version. I have tried several different methods of installation:
remotes::install_version("wdman",version="0.2.5",repos="http://cran.us.r-project.org")
Downloading package from url: http://cran.us.r-project.org/src/contrib/Archive/wdman/wdman_0.2.5.tar.gz Installing package into ‘C:/Users/sck11/AppData/Local/R/win-library/4.2’ (as ‘lib’ is unspecified) Warning message: In i.p(...) : installation of package ‘C:/Users/sck11/AppData/Local/Temp/RtmpcdxGRe/remotes458832aa4e6c/wdman’ had non-zero exit status
install.packages("C:/Users/sck11/Downloads/wdman_0.2.2.tar",repos=NULL,type="source")
Installing package into ‘C:/Users/sck11/AppData/Local/R/win-library/4.2’ (as ‘lib’ is unspecified) Warning in install.packages : installation of package ‘C:/Users/sck11/Downloads/wdman_0.2.2.tar’ had non-zero exit status
devtools::install_version("wdman", version = "0.2.5", repos = "http://cran.us.r-project.org")
Downloading package from url: http://cran.us.r-project.org/src/contrib/Archive/wdman/wdman_0.2.5.tar.gz Installing package into ‘C:/Users/sck11/AppData/Local/R/win-library/4.2’ (as ‘lib’ is unspecified) Warning message: In i.p(...) : installation of package ‘C:/Users/sck11/AppData/Local/Temp/RtmpcdxGRe/remotes458852c94c21/wdman’ had non-zero exit status
The current version of wdman installs correctly. I tried deleting wdman completely and installing an older version but this has not worked either, with the following output:
Downloading package from url: http://cran.us.r-project.org/src/contrib/RSelenium_1.7.9.tar.gz
Installing 1 packages: wdman
Installing package into ‘C:/Users/sck11/AppData/Local/R/win-library/4.2’
(as ‘lib’ is unspecified)
trying URL 'http://cran.us.r-project.org/src/contrib/wdman_0.2.6.tar.gz'
Content type 'application/x-gzip' length 29553 bytes (28 KB)
downloaded 28 KB
The downloaded source packages are in
‘C:\Users\sck11\AppData\Local\Temp\RtmpcdxGRe\downloaded_packages’
Installing package into ‘C:/Users/sck11/AppData/Local/R/win-library/4.2’
(as ‘lib’ is unspecified)
Warning messages:
1: In i.p(...) : installation of package ‘wdman’ had non-zero exit status
2: In i.p(...) :
installation of package ‘C:/Users/sck11/AppData/Local/Temp/RtmpcdxGRe/remotes458870401526/RSelenium’ had non-zero exit status
I have tried reverting to old versions of other packages as well and receive the same errors. Any help is greatly appreciated!