KxSystems / rkdb

R client for kdb+
https://code.kx.com/q/interfaces
Apache License 2.0
41 stars 29 forks source link

Install fails in R4.4 #73

Open ekwf opened 4 months ago

ekwf commented 4 months ago

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

ekwf commented 4 months ago

downloading the repo and installing via below worked:

open Rstudio library(devtools) setwd('/path/to/repo') build() install()