diff --git a/conda_smithy/templates/README.md.tmpl b/conda_smithy/templates/README.md.tmpl index 7d586a691..c848adfee 100644 --- a/conda_smithy/templates/README.md.tmpl +++ b/conda_smithy/templates/README.md.tmpl @@ -228,12 +228,25 @@ or with `mamba`: mamba install {{ ' '.join(outputs) }} ``` +If you are using a [`pixi` project](https://pixi.sh/latest/basic_usage/): + +``` +pixi add {{ ' '.join(outputs) }} +``` + + It is possible to list all of the versions of `{{ outputs[0] }}` available on your platform with `conda`: ``` conda search {{ outputs[0] }} --channel {{ channel_with_label }} ``` +or with [`pixi`](https://pixi.sh): + +``` +pixi search --channel {{ channel_with_label }} {{ outputs[0] }} +``` + or with `mamba`: ```