16 lines
434 B
Batchfile
16 lines
434 B
Batchfile
call cremig_setenv.bat
|
|
if not exist %CREMIG%\.venv (
|
|
ECHO Initialisiere Virtual-Environment...
|
|
python -m venv %CREMIG%\.venv --upgrade-deps
|
|
ECHO Erfolgreich.
|
|
|
|
call %CREMIG%\.venv\Scripts\activate.bat
|
|
ECHO Installiere erforderliche Python Packages...
|
|
pip install -r %CREMIG_LIB%/requirements.txt -q
|
|
ECHO Erfolgreich
|
|
deactivate
|
|
|
|
) ELSE (
|
|
ECHO Erforderliche Python Packages bereits installiert!
|
|
)
|