:fire: A friendly package manager for R
Inspired by Yarn, Bundler, and Pipenv
Install Jetpack
Jetpack uses the DESCRIPTION
file to store your project dependencies. It stores the specific version of each package in renv.lock
. This makes it possible to have a reproducible environment. You can edit dependencies in the DESCRIPTION
file directly, but Jetpack provides functions to help with this.
Open a project and run:
Install packages for a project
This ensures all the right versions are installed locally. As dependencies change, collaborators should run this command to stay synced.
Be sure to prefix commands with
jetpack::
. Jetpack isn’t installed in your virtual environment, solibrary(jetpack)
won’t work.
Add a package
Add multiple packages
Add a specific version
Add from GitHub or another remote source
Supports these remotes
Add from a specific tag, branch, or commit
Add from a local source
The local directory must have the same name as the package
Update a package
For local packages, run this anytime the package code is changed
Update multiple packages
Update all packages
Remove a package
Remove multiple packages
Remove remotes as well
Check that all dependencies are installed
Show outdated packages
Be sure to commit the files Jetpack generates to source control.
For Bioconductor, add the BiocManager package first:
Then add other packages:
Install Jetpack on the server and run:
Create init.R
with:
And add it into your Dockerfile
:
FROM r-base
RUN apt-get update && apt-get install -qq -y --no-install-recommends \
libxml2-dev libssl-dev libcurl4-openssl-dev libssh2-1-dev
RUN mkdir -p /app
WORKDIR /app
COPY init.R DESCRIPTION renv.lock ./
RUN Rscript init.R
COPY . .
CMD Rscript app.R
For the R buildpack, create init.R
with:
Alternatively, you can use Docker Deploys on Heroku.
Jetpack can also be run from the command line. To install the CLI, run:
On Windows, add
C:\ProgramData\jetpack\bin
to your PATH. See instructions for how to do this.
All the Jetpack commands are now available
jetpack init
jetpack install
jetpack add randomForest
jetpack add DBI@1.0.0
jetpack add plyr --remote=hadley/plyr
jetpack update randomForest
jetpack remove DBI
jetpack check
jetpack outdated
You can also use it to manage global packages
jetpack global add randomForest
jetpack global update DBI
jetpack global update
jetpack global remove plyr
jetpack global list
jetpack global outdated
You can even use it to update itself
For the full list of commands, use:
To upgrade, rerun the installation instructions.
Jetpack 0.5.0 uses renv instead of Packrat. To upgrade a project:
jetpack::migrate()
packrat.lock
jetpack::install()
Jetpack 0.4.0 greatly reduces the number of dependencies. As part of this, the info
and search
commands have been removed.
Jetpack 0.3.0 greatly reduces the number of files in your projects. To upgrade a project:
packrat/packrat.lock
to packrat.lock
packrat
directory.Rbuildignore
and .gitignore
if they only contain Packrat references.Rprofile
with:if (requireNamespace("jetpack", quietly=TRUE)) {
jetpack::load()
} else {
message("Install Jetpack to use a virtual environment for this project")
}
View the changelog
Everyone is encouraged to help improve this project. Here are a few ways you can help:
To get started with development and testing:
In R, do:
To test a single file, use: