updated dependencies for source installer (#121)

This commit is contained in:
Adnan Hodzic 2020-09-20 22:32:05 +02:00
parent 70c646f9cb
commit 92678e447b
1 changed files with 4 additions and 4 deletions

View File

@ -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:"