nosiu / comfyui-instantId-faceswap

Implementation of faceswap based on InstantID for ComfyUI.
Apache License 2.0
157 stars 14 forks source link

import failed #17

Open sugatasanshiro opened 3 months ago

sugatasanshiro commented 3 months ago

chrome_YoUDOdWnso

nosiu commented 3 months ago

It's hard to say without knowing what the console spits out. For my part, I can say that there was a version update today and maybe there is a problem with the cache (?) in the ComfyUI manager (I will check tomorrow if the problem still exists)

I had no idea that someone added this extension there.

In the worst case, the solution would be to download the repository as, for example, ZIP (CODE -> download ZIP). Unpacking and pasting the files to ComfyUI/custom-nodes/comfyui-instantId-faceswap and overwrite changes.

johndpope commented 3 months ago

update.sh - run inside your /comfyui/custom_nodes (every day)

#!/bin/bash

Green='\033[0;32m'
Def='\033[m'

echo -e "${Green}MainApp:${Def}"
git pull
echo ---

for f in *; do
    if [ -d "$f" ]; then
        echo -e "${Green}$f:${Def}"
        cd "$f"
        git pull
        echo ---
        cd ..
    fi
done