Last active
May 14, 2025 13:53
-
-
Save jeroen/e8b225e9b1004a16ef90f50700352aa5 to your computer and use it in GitHub Desktop.
CRAN Packages with NeedsCompilation but unknown platform (no src dir)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
df <- as.data.frame(read.dcf(url('https://cran.r-universe.dev/bin/linux/noble-x86_64/4.5/src/contrib/PACKAGES'))) | |
unknown_platform <- df$NeedsCompilation == 'yes' & !grepl('linux', df$Built) | |
df$Package[unknown_platform] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment