diff options
author | Christian <59421913+Cikmo@users.noreply.github.com> | 2022-09-07 22:31:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-07 22:31:25 +0000 |
commit | d03e9502b1815e2262eff09e0a0f6b21e18e8609 (patch) | |
tree | 7d99f27c181cb4a339a1e37475ff18ab0bdc7fa0 /webui.bat | |
parent | 296d012423f8d1862a63680443bb88b7d904ba4e (diff) | |
download | stable-diffusion-webui-gfx803-d03e9502b1815e2262eff09e0a0f6b21e18e8609.tar.gz stable-diffusion-webui-gfx803-d03e9502b1815e2262eff09e0a0f6b21e18e8609.tar.bz2 stable-diffusion-webui-gfx803-d03e9502b1815e2262eff09e0a0f6b21e18e8609.zip |
Fix not being able to have spaces directory
Adds quotes around the PYTHON path so that there can be spaces in parent folders.
Diffstat (limited to 'webui.bat')
-rw-r--r-- | webui.bat | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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
|