From 92678e447b252b0db479dfafd7c961cf84726b9d Mon Sep 17 00:00:00 2001 From: Adnan Hodzic Date: Sun, 20 Sep 2020 22:32:05 +0200 Subject: [PATCH] updated dependencies for source installer (#121) --- auto-cpufreq-installer | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/auto-cpufreq-installer b/auto-cpufreq-installer index 3043ddf..ae4557a 100755 --- a/auto-cpufreq-installer +++ b/auto-cpufreq-installer @@ -52,7 +52,7 @@ then echo -e "\nDetected Debian based distribution" separator echo -e "\nSetting up Python environment\n" - apt install python3-dev python3-pip inxi -y + apt install python3-dev python3-pip python3-setuptools -y separator echo -e "\nInstalling necessary Python packages\n" pip_pkg_install @@ -71,9 +71,9 @@ then # CentOS exception if [ -f /etc/centos-release ]; then - yum install platform-python-devel inxi + yum install platform-python-devel else - yum install python-devel inxi + yum install python-devel fi echo -e "\nInstalling necessary Python packages\n" pip_pkg_install @@ -88,7 +88,7 @@ else separator echo -e "\nDidn't detect Debian or RedHat based distro.\n" echo -e "To complete installation, you need to:" - echo -e "Install: python3, pip3 and inxi\n" + echo -e "Install: python3, pip3, python3-setuptools\n" echo -e "Install necessary Python packages:" echo -e "pip3 install psutil click distro power" echo -e "\nRun following sequence of lines:"