Skip to content

Commit 06daa91

Browse files
committed
fix extension requirements installer
1 parent 32fd0dd commit 06daa91

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python_modules/install_sd_webui_extension_requirement.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def run_extension_installer(sd_webui_base_path: Path, extension_dir: Path) -> bo
175175
env["PYTHONPATH"] = f"{sd_webui_base_path}{os.pathsep}{py_path}"
176176
env["WEBUI_LAUNCH_LIVE_OUTPUT"] = "1"
177177
run_cmd(
178-
command=[sys.executable, str(path_installer)],
178+
command=[Path(sys.executable).as_posix(), path_installer.as_posix()],
179179
custom_env=env,
180180
)
181181
return True

0 commit comments

Comments
 (0)