There are several ways to install {nemo}:
R
Using {remotes} directly from GitHub:
install.packages("remotes")
remotes::install_github("tidywf/nemo") # latest main commit
remotes::install_github("tidywf/nemo@v0.1.0") # specific versionConda
The conda package is available from the tidywf channel at https://anaconda.org/tidywf/r-nemo.
conda create -n nemo_env -c tidywf -c conda-forge r-nemo==0.1.0
conda activate nemo_envPixi
If you use Pixi, you can create a new isolated environment with the deployed conda package:
pixi init -c tidywf -c conda-forge ./tidy_env
cd ./tidy_env
pixi add r-nemo==0.1.0Then you can create a task to run the nemo.R CLI script:
pixi task add nemo "nemo.R"
pixi run nemo --helpOr activate the environment and use nemo directly in an R environment:
pixi shell
Rlibrary(nemo)
