From d03e9502b1815e2262eff09e0a0f6b21e18e8609 Mon Sep 17 00:00:00 2001 From: Christian <59421913+Cikmo@users.noreply.github.com> Date: Thu, 8 Sep 2022 00:31:25 +0200 Subject: Fix not being able to have spaces directory Adds quotes around the PYTHON path so that there can be spaces in parent folders. --- webui.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'webui.bat') diff --git a/webui.bat b/webui.bat index 055a19b0..0de2ab88 100644 --- a/webui.bat +++ b/webui.bat @@ -35,7 +35,7 @@ echo Unable to create venv in directory %VENV_DIR% goto :show_stdout_stderr :activate_venv -set PYTHON=%~dp0%VENV_DIR%\Scripts\Python.exe +set PYTHON="%~dp0%VENV_DIR%\Scripts\Python.exe" %PYTHON% --version echo venv %PYTHON% goto :install_torch -- cgit v1.2.1