Open MetexLab opened 1 year ago
are you using 1.5RC? you need to switch gradio-client to 0.2.7 see this post: https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/11855
now we are getting this when installing
Launching Web UI with arguments: --xformers --listen --enable-insecure-extension-access
*** Error loading script: main.py
Traceback (most recent call last):
File "/home/ubuntu/stable-diffusion-webui/modules/scripts.py", line 274, in load_scripts
script_module = script_loading.load_module(scriptfile.path)
File "/home/ubuntu/stable-diffusion-webui/modules/script_loading.py", line 10, in load_module
module_spec.loader.exec_module(module)
File "
The error message indicates that the issue is in the file msai_prelude.py at the line:
def ENV_EXCLUSION(self) -> list[str]:
So, you should add the import statement in the msai_prelude.py file. Here's how you can do it:
Open the msai_prelude.py file. At the top of the file, add the following line: python Copy code from typing import List Then, change the line from: python Copy code def ENV_EXCLUSION(self) -> list[str]: to:
python Copy code def ENV_EXCLUSION(self) -> List[str]: Please note that Python is case-sensitive, so make sure to use List with a capital 'L'.
fixed it with this
it's stucked here no progress aws ec2 server g4dnxlarge ubuntu
@MetexLab don't have the linux enviornment to test it out. do you see anything from the log file in the log directory?
*** API error: GET: http://52.54.1.173:7860/info {'error': 'KeyError', 'detail': '', 'body': '', 'errors': "'dataset'"} Traceback (most recent call last): File "/home/ec2-user/stable-diffusion-webui/venv/lib64/python3.9/site-packages/anyio/streams/memory.py", line 98, in receive return self.receive_nowait() File "/home/ec2-user/stable-diffusion-webui/venv/lib64/python3.9/site-packages/anyio/streams/memory.py", line 93, in receive_nowait raise WouldBlock anyio.WouldBlock
*** API error: GET: http://52.54.1.173:7860/info {'error': 'KeyError', 'detail': '', 'body': '', 'errors': "'dataset'"} Traceback (most recent call last): File "/home/ec2-user/stable-diffusion-webui/venv/lib64/python3.9/site-packages/anyio/streams/memory.py", line 98, in receive return self.receive_nowait() File "/home/ec2-user/stable-diffusion-webui/venv/lib64/python3.9/site-packages/anyio/streams/memory.py", line 93, in receive_nowait raise WouldBlock anyio.WouldBlock