About Anaconda Help Download Anaconda

conda-forge
conda-forge

R Source Index

Warning: This user's repository contains no packages, perhaps you should try a different label

To use a package from this index you must edit your .Rprofile file:

# ~/.Rprofile
 local({
   r <- getOption("repos")
   r["CRAN"] <- "https://r.anaconda.org/conda-forge"
   options(repos = r, pkgType="source", download.file.method="curl", download.file.extra="-L")
 })

Now you can install packages as normal:

> install.packages('xtable')

If you want to download secure private packages you can use Anaconda.org tokens:

TOKEN=$(anaconda auth --create --name r-download-token)
# ~/.Rprofile
 local({
   r <- getOption("repos")
   r["CRAN"] <- "https://r.anaconda.org/t/$TOKEN/conda-forge"
   options(repos = r, pkgType="source", download.file.method="curl", download.file.extra="-L")
 })

You will need to replace the url prefix /t/$TOKEN with your generated token.

Browse all of conda-forge's packages

Upload with the anaconda-client

# Build your package
 anaconda upload PACKAGE.tar.gz

You must login to view private packages

© 2025 Anaconda, Inc. All Rights Reserved. (v4.1.0) Legal | Privacy Policy