Sygil-Dev / sygil-webui

Stable Diffusion web UI
GNU Affero General Public License v3.0
7.87k stars 883 forks source link

[Bug]: Default install gives error of modules not found (validators.between and hydralit) #1809

Open LordNeoZ opened 1 year ago

LordNeoZ commented 1 year ago

What happened?

When doing the default install (via installer and also tried the manual install from https://sygil-dev.github.io/sygil-webui/docs/Installation/windows-installation) I got 2 bugs:

Installer and manual install ends up with the same error: "ModuleNotFoundError: No module named 'validators.between'"

If I do "conda activate ldm" and "conda install validators" the website opens but it throws the message: "ModuleNotFoundError: No module named 'hydralit'"

The module is installed in the base and ldm envs, the pip install -r requirements doesn't give any error. I've tried to solve the dependencies by downgrading streamlit and hydralit to versions 1.13, but i end up having even more dependency erros that i don't know how to solve properly.

Version

0.0.1 (Default)

What browsers are you seeing the problem on?

Chrome

Where are you running the webui?

Windows

Custom settings

No response

Relevant log output

You can now view your Streamlit app in your browser.

  Local URL: http://localhost:8501
  Network URL: http://192.168.85.10:8501

2023-08-02 11:26:51.220 Uncaught app exception
Traceback (most recent call last):
  File "C:\Users\LordNeo\miniconda3\envs\ldm\lib\site-packages\streamlit\runtime\scriptrunner\script_runner.py", line 563, in _run_script
    exec(code, module.__dict__)
  File "C:\Users\LordNeo\sygil-webui\scripts\webui_streamlit.py", line 22, in <module>
    from sd_utils import (
  File "scripts\sd_utils\__init__.py", line 18, in <module>
    import hydralit as st
ModuleNotFoundError: No module named 'hydralit'

Code of Conduct