aaron villian
aaron villian

Reputation: 1

conda 'ResolvePackageNotFound' error although I installed all the files in the same path

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.

Screenshot of anaconda prompt

Upvotes: 0

Views: 976

Answers (1)

Alex
Alex

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

Related Questions