R package to support workflowr.io
Install and activate the conda environment:
mamba env create --file environment.yml
conda activate wior
Install wio:
R CMD INSTALL --build .
If you run into installation or runtime errors, first try the lockfile to install the exact same versions of all the dependencies. Note that the syntax to create a conda environment from a lockfile is different from above
mamba create --name wior-lock --file environment.yml.lock
conda activate wior-lock
R CMD INSTALL --build .
The lockfile was created with the following:
conda activate wior
conda list --explicit > environment.yml.lock