Skip to content

Commit

Permalink
Add support for Alma 9
Browse files Browse the repository at this point in the history
  • Loading branch information
cybertron committed Jul 11, 2024
1 parent 4b5cc67 commit 2316c1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 01_install_requirements.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ case $DISTRO in
sudo alternatives --set python3 /usr/bin/python3.9
sudo update-alternatives --install /usr/bin/pip3 pip3 /usr/bin/pip3.9 1
;;
"centos9"|"rhel9"|"rocky9")
"centos9"|"rhel9"|"almalinux9"|"rocky9")
sudo dnf -y install python3-pip
if [[ $DISTRO == "centos9" ]] ||[[ $DISTRO == "rocky9" ]] ; then
if [[ $DISTRO == "centos9" || $DISTRO=="almalinux9" || $DISTRO == "rocky9" ]] ; then
sudo dnf config-manager --set-enabled crb
sudo dnf -y install epel-release
elif [[ $DISTRO == "rhel9" ]]; then
Expand Down

0 comments on commit 2316c1b

Please sign in to comment.