Skip to content

Commit

Permalink
Fix not being able to have spaces directory
Browse files Browse the repository at this point in the history
Adds quotes around the PYTHON path so that there can be spaces in parent folders.
  • Loading branch information
Cikmo authored Sep 7, 2022
1 parent 296d012 commit d03e950
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webui.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d03e950

Please sign in to comment.