Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 751 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 751 Bytes

wio

R package to support workflowr.io

Installation

Install and activate the conda environment:

mamba env create --file environment.yml
conda activate wior

Install wio:

R CMD INSTALL --build .

Troubleshooting

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