qs icon indicating copy to clipboard operation
qs copied to clipboard

Binaries through r-universe

Open SebKrantz opened this issue 2 years ago • 1 comments

In case this is of interest, I have set up a fastverse r-universe that builds binary versions of the GitHub version of your packages qs and stringfish for MAC and Windows (new binaries are build within an hour of a new commit to your repo). Users can install these binaries using (for qs):

# Enable repository from fastverse
options(repos = c(
    ropensci = 'https://fastverse.r-universe.dev',
    CRAN = 'https://cloud.r-project.org'))

# Download and install qs in R
install.packages('qs')

# Or simply: 
install.packages('qs', repos = c(ropensci = 'https://fastverse.r-universe.dev', 
                                 CRAN = 'https://cloud.r-project.org')) # Needed for dependencies

You can also add a Badge to your README.md:

qs status badge stringfish status badge

SebKrantz avatar May 14 '22 20:05 SebKrantz

Interesting project! Thanks for letting me know about it!

traversc avatar May 16 '22 16:05 traversc