Update rangolio_installer.sh

This commit is contained in:
Barunes Padhy 2024-06-22 09:09:33 +03:00 committed by GitHub
parent 9171343e61
commit 2db947763d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,11 +18,11 @@ detect_package_manager() {
elif command_exists zypper; then
echo "Detected package manager: Zypper (openSUSE)"
sudo zypper refresh
sudo zypper install -y python3 python3-pip python3-venv git npm curl xterm
sudo zypper install -y python3 python3-pip git npm curl xterm
elif command_exists pacman; then
echo "Detected package manager: Pacman (Arch)"
sudo pacman -Syu
sudo pacman -S --noconfirm python python-pip python-venv git npm curl xterm
sudo pacman -S --noconfirm python python-pip git npm curl xterm
else
echo "Package manager not detected. Unsupported OS or package manager."
exit 1