Merge pull request #6612 from mezotaken/master

Make VENV environment variable accept absolute path instead of relative path.
This commit is contained in:
AUTOMATIC1111 2023-01-10 23:45:34 +03:00 committed by GitHub
commit 2bd2b8b7cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
@echo off @echo off
if not defined PYTHON (set PYTHON=python) if not defined PYTHON (set PYTHON=python)
if not defined VENV_DIR (set VENV_DIR=venv) if not defined VENV_DIR (set VENV_DIR=%~dp0\venv)
set ERROR_REPORTING=FALSE set ERROR_REPORTING=FALSE
@ -26,7 +26,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="%VENV_DIR%\Scripts\Python.exe"
echo venv %PYTHON% echo venv %PYTHON%
if [%ACCELERATE%] == ["True"] goto :accelerate if [%ACCELERATE%] == ["True"] goto :accelerate
goto :launch goto :launch
@ -35,7 +35,7 @@ goto :launch
:accelerate :accelerate
echo "Checking for accelerate" echo "Checking for accelerate"
set ACCELERATE="%~dp0%VENV_DIR%\Scripts\accelerate.exe" set ACCELERATE="%VENV_DIR%\Scripts\accelerate.exe"
if EXIST %ACCELERATE% goto :accelerate_launch if EXIST %ACCELERATE% goto :accelerate_launch
:launch :launch