mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-29 00:28:52 +00:00
17 lines
329 B
Bash
17 lines
329 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Set the environment name
|
||
|
environment_name="env"
|
||
|
|
||
|
# Activate the virtual environment
|
||
|
source "$environment_name/Scripts/activate"
|
||
|
|
||
|
# Change to the installations subfolder
|
||
|
|
||
|
# Run the Python script
|
||
|
python installations/download_all_personalities.py
|
||
|
|
||
|
# Deactivate the virtual environment
|
||
|
echo "deactivating"
|
||
|
deactivate
|