Example: create a conda environment with the latest version of sourmash

sourmash-bio/sourmash-examples#6


Per @bluegenes tested by @jessicalumian.

Create a file sourmash-latest.yml containing the dependencies, plus a pointer to the latest version of sourmash:

channels:
  - conda-forge
  - bioconda
  - defaults
dependencies:
  - python=3.9
  - rust
  - pip
  - pip:
    - git+[https://github.com/sourmash-bio/sourmash@latest](https://github.com/sourmash-bio/sourmash@latest)

and then run:

conda env create -n sourmash-latest -f sourmash-latest.yml

Wait for it to build (~5 min?) and then

conda activate sourmash-latest

and then run:

sourmash info

Categories

This example belongs to the following categories: