sd-webui-roop icon indicating copy to clipboard operation
sd-webui-roop copied to clipboard

why roop is installed, it never appears on sd webui, never show

Open jjiikkkk opened this issue 2 years ago • 4 comments

version problem or ? whatsoever

jjiikkkk avatar Aug 12 '23 18:08 jjiikkkk

Make sure you have C++ 14+ installed, if on Windows follow this: https://stackoverflow.com/questions/64261546/how-to-solve-error-microsoft-visual-c-14-0-or-greater-is-required-when-inst

You also will need to make sure insightface model in installed for python, https://pypi.org/project/insightface/ has info on that.

i stumbled in the dark till i got the answer for the very same issue. this forum was very little help, lol.

ajpixs avatar Aug 12 '23 21:08 ajpixs

thanks, installed on linux. i have insalled insightface, but you see the roop worings never appears on the extension bar

jjiikkkk avatar Aug 13 '23 03:08 jjiikkkk

for myself i didnt see it till i had c++ installed. so dunno. you also may want to completely remove the script reinstall it too, i did that as well as a 'just to be sure' thing, which may or may not have been needed.

I was tossing everything at it and got bit lucky.

On Sat, Aug 12, 2023 at 9:01 PM jjiikkkk @.***> wrote:

thanks, installed on linux. i have insalled insightface, but you see the roop worings never appears on the extension bar

— Reply to this email directly, view it on GitHub https://github.com/s0md3v/sd-webui-roop/issues/205#issuecomment-1676200493, or unsubscribe https://github.com/notifications/unsubscribe-auth/BB4JTGQAYJZSLFLDTPFPT5LXVA7RDANCNFSM6AAAAAA3OCTIS4 . You are receiving this because you commented.Message ID: @.***>

ajpixs avatar Aug 13 '23 08:08 ajpixs

I was having the same issues on Linux. I'm on Mint 21.2 (Ubuntu 22.04). Here is how I got it to work:

Make sure you have c++ 14 installed. Type gcc --version in terminal, then check whether that version includes c++ 14. Mine is gcc 11.4.0 which does include c++14 according to web search, so I didn’t have to install anything extra.

Install roop from extensions tab in stable diffusion webui. It will be placed here: /stable-diffusion-webui/extensions/sd-webui-roop cd /stable-diffusion-webui/extensions/sd-webui-roop pip install -r requirements.txt Right click webui.sh and run in terminal. It may throw up errors such as ‘module not found’ or ‘such and such has not been built correctly’. For me, these modules were found in /.local/lib/python3.10/site-packages Check the create date on those folders. If their create date is same as your above install, then cut and paste to: /stable-diffusion-webui/venv/lib/python3.10/site-packages If their create date is earlier than your above install, then I guess you are also using them for something else, so copy instead of cut. (Not sure if there is a more elegant way of installing them in /venv/ in the first place, but at least this works). Run webui.sh again, it should now work without error, and roop will appear in your webui app

Some other stuff might get downloaded during the above process, and again the first time you use it and hit generate in webui.

SoupyGit avatar Aug 14 '23 10:08 SoupyGit