From b28dcd7684687e0e17cded7ea43f91b1bd6dd33b Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Mon, 27 Feb 2023 20:22:46 -0500 Subject: [PATCH] Install xformers at the same time as requirements in notebook to fix issues. --- notebooks/comfyui_colab.ipynb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/notebooks/comfyui_colab.ipynb b/notebooks/comfyui_colab.ipynb index b260386e..4c08f167 100644 --- a/notebooks/comfyui_colab.ipynb +++ b/notebooks/comfyui_colab.ipynb @@ -35,8 +35,7 @@ "source": [ "!git clone https://github.com/comfyanonymous/ComfyUI\n", "%cd ComfyUI\n", - "!pip install -r requirements.txt\n", - "!pip install xformers\n", + "!pip install xformers -r requirements.txt\n", "!sed -i 's/v1-inference.yaml/v1-inference_fp16.yaml/g' webshit/index.html" ] },