You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently there is an issue with new installation of Control Net breaking WebUI
this is caused by a recent update to Control-Net's Upstream dependency albumentations1.4.4 see history
in
albumentations 1.4.4 they introduce and you dependency requirement
pydantic required: >=2.6.4
albumentations is installed by insightface which specifies Any version of albumentations as such pip install the latest version of 1.4.4
webui 1.9 with Gradio==3.41.2 uses fastapi==0.94.0 which requires]
pydantic required: >=1.7.4,<3.0.0,!=2.0.1,!=2.0.0,!=1.8.1,!=1.8
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Currently there is an issue with new installation of Control Net breaking WebUI
this is caused by a recent update to Control-Net's Upstream dependency
albumentations1.4.4 see historyin
albumentations 1.4.4 they introduce and you dependency requirement
albumentationsis installed byinsightfacewhich specifiesAnyversion ofalbumentationsas such pip install the latest version of1.4.4webui 1.9 with
Gradio==3.41.2usesfastapi==0.94.0which requires]pydantic required: >=1.7.4,<3.0.0,!=2.0.1,!=2.0.0,!=1.8.1,!=1.8
as such the Upstream update of
albumentationscauses WebUi to breakAny other extensions that also uses
insightfacewill also be affected with the same issueUser Fix
downgrading
pydanticto1.10.15andalbumentationsto1.4.3the can be done by running the following command in the webui's python environment
from the webui root the following commands
if using powershell on windwos
if using cmd on windows
if using linux
source venv/bin/activate pip install albumentations==1.4.3 pip install pydantic==1.10.15Related issues
Fix PR
fix solution, install
albumentations==1.4.3beforeinsightfacethis way pip won't auto install the newest version
1.4.4if anyone know of any other extensions that uses
insightfaceplease inform them about this issueAll reactions