-
-
Notifications
You must be signed in to change notification settings - Fork 22
Description
Can't start tldream because it throws the following error:
I:\Super SD 2.0\tldream>start.bat
I:\Super SD 2.0\tldream>tldream --model "I:\stable_diffusion_shared\models\Stable-diffusion\SD v1.5\v1-5-pruned-emaonly_(3.97GB).ckpt" --listen "localhost" --no-nsfw-filter --local-files-only
A matching Triton is not available, some optimizations will not be enabled.
Error caught was: No module named 'triton'
╭─────────────────────────────── Traceback (most recent call last) ────────────────────────────────╮
│ F:\Programme\Python310\lib\runpy.py:196 in _run_module_as_main │
│ │
│ 193 │ main_globals = sys.modules["main"].dict │
│ 194 │ if alter_argv: │
│ 195 │ │ sys.argv[0] = mod_spec.origin │
│ ❱ 196 │ return _run_code(code, main_globals, None, │
│ 197 │ │ │ │ │ "main", mod_spec) │
│ 198 │
│ 199 def run_module(mod_name, init_globals=None, │
│ │
│ F:\Programme\Python310\lib\runpy.py:86 in _run_code │
│ │
│ 83 │ │ │ │ │ loader = loader, │
│ 84 │ │ │ │ │ package = pkg_name, │
│ 85 │ │ │ │ │ spec = mod_spec) │
│ ❱ 86 │ exec(code, run_globals) │
│ 87 │ return run_globals │
│ 88 │
│ 89 def run_module_code(code, init_globals=None, │
│ │
│ in :7 │
│ │
│ 4 from tldream import entry_point │
│ 5 if name == 'main': │
│ 6 │ sys.argv[0] = re.sub(r'(-script.pyw|.exe)?$', '', sys.argv[0]) │
│ ❱ 7 │ sys.exit(entry_point()) │
│ 8 │
│ │
│ F:\Programme\Python310\lib\site-packages\tldream_init.py:63 in entry_point │
│ │
│ 60 │
│ 61 │
│ 62 def entry_point(): │
│ ❱ 63 │ typer_app() │
│ 64 │
│ │
│ F:\Programme\Python310\lib\site-packages\typer\main.py:328 in call │
│ │
│ F:\Programme\Python310\lib\site-packages\typer\main.py:311 in call │
│ │
│ F:\Programme\Python310\lib\site-packages\click\core.py:829 in call │
│ │
│ F:\Programme\Python310\lib\site-packages\typer\core.py:716 in main │
│ │
│ F:\Programme\Python310\lib\site-packages\typer\core.py:190 in _main │
╰──────────────────────────────────────────────────────────────────────────────────────────────────╯
AttributeError: module 'click.utils' has no attribute '_expand_args'
Any ideas?