lollms-webui/scripts/linux/uninstall.sh

16 lines
369 B
Bash
Raw Normal View History

2023-04-06 19:12:49 +00:00
#!/bin/bash
echo "This will uninstall the environment. Are you sure? [Y/N]"
read choice
if [[ "$choice" =~ [yY] ]]; then
# Download Python installer
2024-01-11 22:14:30 +00:00
printf "Removing lollms conda environment"
2023-04-06 19:12:49 +00:00
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