Fix not being able to have spaces directory
Adds quotes around the PYTHON path so that there can be spaces in parent folders.
This commit is contained in:
parent
296d012423
commit
d03e9502b1
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ echo Unable to create venv in directory %VENV_DIR%
|
||||||
goto :show_stdout_stderr
|
goto :show_stdout_stderr
|
||||||
|
|
||||||
:activate_venv
|
:activate_venv
|
||||||
set PYTHON=%~dp0%VENV_DIR%\Scripts\Python.exe
|
set PYTHON="%~dp0%VENV_DIR%\Scripts\Python.exe"
|
||||||
%PYTHON% --version
|
%PYTHON% --version
|
||||||
echo venv %PYTHON%
|
echo venv %PYTHON%
|
||||||
goto :install_torch
|
goto :install_torch
|
||||||
|
|
Loading…
Reference in a new issue