From 72b7c770ae9277b9140bf4660ac91b2ab6f855b5 Mon Sep 17 00:00:00 2001 From: lucid layers Date: Mon, 7 Feb 2022 21:42:13 +0100 Subject: [PATCH] avoid windows anaconda installation problems as you know, a common scenario on windows for new users is a combination of: anaconda + pythorch + cuda but when installing the current releases of these from the websites, the stylegan installation fails and falls back to cpu. for dealing with this, i suggest: to change the "requirement" from cudatoolkit 11.1 to a "minimun" of 11.1. so the 11.3 from the current pytorch gets accepted. thank you. --- environment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment.yml b/environment.yml index 578a58a0..fb3e1ba3 100644 --- a/environment.yml +++ b/environment.yml @@ -10,7 +10,7 @@ dependencies: - pillow=8.3.1 - scipy=1.7.1 - pytorch=1.9.1 - - cudatoolkit=11.1 + - cudatoolkit>=11.1 - requests=2.26.0 - tqdm=4.62.2 - ninja=1.10.2