lollms-webui/scripts/linux/uninstall.sh
2024-01-11 23:14:30 +01:00

16 lines
369 B
Bash

#!/bin/bash
echo "This will uninstall the environment. Are you sure? [Y/N]"
read choice
if [[ "$choice" =~ [yY] ]]; then
# Download Python installer
printf "Removing lollms conda environment"
echo "OK"
read -p "Press [Enter] to continue..."
else
echo "Please install Python and try again."
read -p "Press [Enter] to continue..."
exit 1
fi