lollms-webui/installations/download_all_personalities.bat
2023-05-25 22:07:26 +02:00

17 lines
374 B
Batchfile

@echo off
rem Set the environment name
set environment_name=env
rem Activate the virtual environment
call %environment_name%\Scripts\activate.bat
rem Change to the installations subfolder
rem Run the Python script
python installations/download_all_personalities.py
rem Deactivate the virtual environment
echo deactivating
call %environment_name%\Scripts\deactivate.bat