mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2025-01-11 15:32:41 +00:00
17 lines
374 B
Batchfile
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
|