I have a conda environment that has a package pinned as follows:
Pinned packages:
- python 3.8.*
- bcbio-gff 0.6.7.*
- snakemake 6.7.0.*
How do I remove the pin for one of the pinned packages, just using command line conda
/ mamba
?
I've tried conda update snakemake
but that doesn't remove the pin.
I can change the pin easily, e.g. by conda install snakemake=7
, but then I have snakemake
still pinned. I want to unpin snakemake
entirely.
I had a look at potentially similar questions, but none seemed to answer my question.