Install fails in R4.4
Opened this issue · 1 comments
R4.4 running via Rstudio in Win11:
devtools::install_github('kxsystems/rkdb',INSTALL_opts=c("--no-multiarch"))
Downloading GitHub repo kxsystems/rkdb@HEAD
── R CMD build ──────────────────────────────────────────────────────────────────────────────────────────────────────────────
✔ checking for file 'C:\Users\xx\AppData\Local\Temp\RtmpoZgYNk\remotes55e05aa549d9\KxSystems-rkdb-dc03a3f/DESCRIPTION'
─ preparing 'rkdb':
✔ checking DESCRIPTION meta-information ...
─ cleaning src
─ checking for LF line-endings in source and make files and shell scripts
─ checking for empty or unneeded directories
─ building 'rkdb_0.13.0.tar.gz'
Installing package into ‘C:/Users/xxl/AppData/Local/R/win-library/4.4’
(as ‘lib’ is unspecified)
Loading required package: usethis
Error in library(rkdb) : there is no package called 'rkdb'
Execution halted
downloading the repo and installing via below worked:
open Rstudio
library(devtools)
setwd('/path/to/repo')
build()
install()