From 84cec1f40d73e7aefd48acaa29bb47d35e7b2e02 Mon Sep 17 00:00:00 2001 From: Tom Heaton <50220137+tomheaton@users.noreply.github.com> Date: Mon, 20 May 2024 14:22:24 +0100 Subject: [PATCH] fix: Add `pip` as explicit dep in `environment.yml` to prevent warning (#2574) Removes this warning: > Warning: you have pip-installed dependencies in your environment file, but you do not list pip itself as one of your conda dependencies. Conda may not use the correct pip to install your packages, and they may end up in the wrong place. Please add an explicit pip dependency. I'm adding one for you, but still nagging you. Co-authored-by: Matt Robinson --- environment.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/environment.yml b/environment.yml index c1de9d6e8d..6f9cbe3889 100644 --- a/environment.yml +++ b/environment.yml @@ -12,6 +12,7 @@ dependencies: - pywin32 - poppler - torchvision + - pip - pip: - huggingface-hub - layoutparser