I would like to specify exact versions inside my conda environment file. I've installed the latest version available by adding an unversioned entry to my environment.yaml, followed by conda env update.
# environment.yaml channels: - conda-forge - bioconda - r - defaults dependencies: - gawk=4.2.1 - plink # new package -- get the latest Updated the environment with:
$ conda env update -n myenv -f environment.yaml ... plink-1.90b4-h 100% |#################| Time: 0:00:00 1.63 MB/ A specific (latest) version "1.904b4-h" was pulled, but that seems truncated and doesn't reflect exactly a conda package version. How would I go about updating the environment with a version string that conda expects?