Install R and Python packages from the local Sandbox repository
R packages
List R packages available in the local Sandbox CRAN repository using R
available.packages()[,c("Package","Version")]p <- available.packages()[,c("Package", "Version")]
c <- grepl("^Bi", p[,c("Package")], ignore.case=TRUE)
p[c,]colnames(available.packages())List R packages available in the local Sandbox CRAN repository using the terminal
Install R packages from the local Sandbox CRAN repository
List available R packages in the local Sandbox CRAN repository outside the Sandbox
Python packages
List Python packages available in the local Sandbox PyPI repository using the terminal
Install Python packages from the local Sandbox PyPI repository using the terminal
Last updated
Was this helpful?