tprodanov / locityper

Targeted genotyper for complex polymorphic genes
https://locityper.vercel.app
MIT License
9 stars 0 forks source link

Difficult to use conda install #3

Open ld9866 opened 2 weeks ago

ld9866 commented 2 weeks ago

Dear developer: we want to try the locityper in our data but we found it is difficult to install.

conda install -c bioconda locityper Channels:

LibMambaUnsatisfiableError: Encountered problems while solving:

Could not solve for environment specs The following packages are incompatible └─ locityper is not installable because there are no viable options ├─ locityper [0.13.4|0.14.4|0.14.5|0.15.0|0.15.1] would require │ └─ _openmp_mutex _llvm, which does not exist (perhaps a missing channel); └─ locityper [0.15.2|0.15.3] would require └─ libgcc-ng >=12 , which does not exist (perhaps a missing channel).

We want to know how to solve the problem ?

tprodanov commented 2 weeks ago

Did you manage to install Locityper with conda? If not, I can advise three possible ways to resolve the problem:

  1. Add conda-forge channel:
    conda config --add channels conda-forge
    conda config --add channels bioconda
  2. Use mamba instead of conda: mamba install locityper
  3. Create new environment specifically for Locityper:
    conda create --name locityper locityper
    conda activate locityper