Replies: 3 comments 6 replies
-
I figured it out I had to take a good look at So, when I restart the container, it executes the #!/bin/bash
if [ -f "/data/config/comfy/custom_nodes/ComfyUI-Manager/requirements.txt" ]; then
pip install -r /data/config/comfy/custom_nodes/ComfyUI-Manager/requirements.txt
fi However, I met another error message at container restart:
Going to figure this out later |
Beta Was this translation helpful? Give feedback.
-
I've just installed the manager in the comfy Dockerfile take a look at nehemiascr@91f163b
|
Beta Was this translation helpful? Give feedback.
-
Thanks to everyone's input here Followed what gl-prout said 1.
2. I came to this from therealpygon talking about forcing installation So my requirements.txt file looks like this now:
3. In ComfyUI-Manager/glob/manage_server.py I changed the line note for people on the bottom of the learning curve (on the wrong side) like me: Thank you all for feeding discussions like this with lifesaving informations I usually only lurk for, truly grateful |
Beta Was this translation helpful? Give feedback.
-
I have successfully installed ComfyUI and have cloned ComfyUI Manager's repo in
stable-diffusion-webui-docker/data/config/comfy/custom_nodes
But when I restart ComfyUI, ComfyUI Manager responds with the module
git
missing, which makes sense, because ComfyUI Manager's python requirements are not installed within the imageThose are the said requirements as listed on their repo
I do believe that I would need to modify either the
entrypoint.sh
orDockerfile
instable-diffusion-webui-docker/services/comfy
to add instructions to pip install those requirements, but I'm not sure where it would be the most appropriate, and the condition to see if ComfyUI Manager is there or notBeta Was this translation helpful? Give feedback.
All reactions