I tried to install the anytime R package using pak with LinkingTo dependencies explicitly enabled:
options(pkg.include_linkingto = TRUE)
pak::pkg_install(
"anytime",
upgrade = TRUE,
dependencies = TRUE
)
According to the package DESCRIPTION, BH is listed under the LinkingTo field (see screenshot below). My expectation was that, with pkg.include_linkingto = TRUE, the BH package would be installed as part of the dependency resolution.
However, after the installation completes, BH is not present:
find.package("BH")
Error in find.package("BH") : there is no package called ‘BH’
* pak version:
- 0.9.5
* Version information:
- pak platform: x86_64-pc-linux-gnu (current: x86_64-pc-linux-gnu, compatible)
- pak repository: - (local install?)
* Optional packages installed:
- pillar
* Library path:
- /nfs-data/rhome/qeq/R/x86_64-pc-linux-gnu-library/4.5
- /opt/R/4.5.2/lib/R/library
* pak is installed at /nfs-data/rhome/qeq/R/x86_64-pc-linux-gnu-library/4.5/pak.
* Dependency versions:
- callr 3.7.6
- cli 3.6.6
- curl 5.2.3
- desc 1.4.3
- filelock 1.0.3
- jsonlite 2.0.0
- keyring 1.4.1
- lpSolve 5.6.23
- pkgbuild 1.4.8
- pkgcache 2.2.5.9000
- pkgdepends 0.9.1.9000
- pkgsearch 3.1.5
- processx 3.8.7
- ps 1.9.2
- R6 2.5.1
- yaml 2.3.12
- zip 2.3.3
* Dependencies can be loaded
I tried to install the anytime R package using pak with LinkingTo dependencies explicitly enabled:
According to the package DESCRIPTION, BH is listed under the LinkingTo field (see screenshot below). My expectation was that, with pkg.include_linkingto = TRUE, the BH package would be installed as part of the dependency resolution.
However, after the installation completes, BH is not present: