raise ValueError(f"Solver {name} does not exist.")
ValueError: Solver sdxl does not exist.
I checked the location of the error message in the code, but found that the dictionary related to the Solver is completely empty. This directly prevents the program from running normally. Why is this empty? Or, how should I fill it in?
By the way, the example's conda env create -f environment.yaml does not work properly. This is a problem with the YAML file, which should also be noted.
raise ValueError(f"Solver {name} does not exist.")
ValueError: Solver sdxl does not exist.
I checked the location of the error message in the code, but found that the dictionary related to the Solver is completely empty. This directly prevents the program from running normally. Why is this empty? Or, how should I fill it in?
By the way, the example's
conda env create -f environment.yamldoes not work properly. This is a problem with the YAML file, which should also be noted.