Skip to content

Commit db54ea3

Browse files
authored
Update auto-cpufreq-installer (#808)
Changed python38 to python3 to solve an install error and also python3-setuptools were causing a conflict using python311-setuptools ended up solving that install.
1 parent c0d9ec5 commit db54ea3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

auto-cpufreq-installer

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,16 +96,16 @@ function tool_install {
9696
detected_distro "Arch Linux based"
9797
pacman -S --noconfirm --needed python python-pip python-setuptools base-devel dmidecode gobject-introspection gtk3 gcc
9898

99-
elif [ -f /etc/os-release ];then
99+
elif [ -f /etc/os-release ];then
100100
. /etc/os-release
101101
case $ID in
102102
opensuse-leap)
103103
detected_distro "OpenSUSE"
104-
zypper install -y python3 python3-pip python3-setuptools python3-devel gcc dmidecode gobject-introspection-devel python3-cairo-devel gtk3 gtk3-devel
104+
zypper install -y python3 python3-pip python311-setuptools python3-devel gcc dmidecode gobject-introspection-devel python3-cairo-devel gtk3 gtk3-devel
105105
;;
106106
opensuse-tumbleweed)
107107
detected_distro "OpenSUSE"
108-
zypper install -y python38 python3-pip python3-setuptools python3-devel gcc dmidecode gobject-introspection-devel python3-cairo-devel gtk3 gtk3-devel
108+
zypper install -y python3 python3-pip python311-setuptools python3-devel gcc dmidecode gobject-introspection-devel python3-cairo-devel gtk3 gtk3-devel
109109
;;
110110
void)
111111
detected_distro "Void Linux"

0 commit comments

Comments
 (0)