Reputation: 1
When attempting to create a conda environment I get a ResolvePackageNotFound
error.
(base) C:\Users\dell\docking_py> conda env create -f .conda.yml
Collecting package metadata (repodata.json): done
solving environment: failed
ResolvePackageNotFound:
- autodock
- mgltools
- autodock-vina
I've installed autodock
, autodock-vina
and mgltools
in docking_py
itself.
Upvotes: 0
Views: 976
Reputation: 7065
All three packages: autodock
, autodock-vina
, and mgltools
appear to be available on the Bioconda channel.
It looks like you need to specify the channel that you are using:
name: my_env
channels:
- conda-forge
- bioconda
- defaults
dependencies:
- autodock
- mgltools
- autodock-vina
Including any other dependencies that you have.
However, note that Bioconda does not support Windows, so consider alternatives such as WSL2 or Docker, with a Miniforge variant for Conda.
Upvotes: 1