For example: ```R options(repos = c("https://posit-dev.r-universe.dev", "https://cran.rstudio.com")) remotes <- "mcptools@0.1.1" pak::pkg_install(remotes) ``` This fails with: ```R > options(repos = c("https://posit-dev.r-universe.dev", "https://cran.rstudio.com")) > remotes <- "mcptools@0.1.1" > pak::pkg_install(remotes) Error: ! error in pak subprocess Caused by error: ! Could not solve package dependencies: * mcptools@0.1.1: Conflicts with mcptools@0.1.1 Type .Last.error to see the more details. ``` And indeed: ```R > db <- available.packages(filters = "R_version") > db[db[, "Package"] == "mcptools", 1:2] Package Version mcptools "mcptools" "0.1.1.9000" mcptools "mcptools" "0.1.1" ```