updated dependencies for source installer (#121)
This commit is contained in:
parent
70c646f9cb
commit
92678e447b
|
@ -52,7 +52,7 @@ then
|
||||||
echo -e "\nDetected Debian based distribution"
|
echo -e "\nDetected Debian based distribution"
|
||||||
separator
|
separator
|
||||||
echo -e "\nSetting up Python environment\n"
|
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
|
separator
|
||||||
echo -e "\nInstalling necessary Python packages\n"
|
echo -e "\nInstalling necessary Python packages\n"
|
||||||
pip_pkg_install
|
pip_pkg_install
|
||||||
|
@ -71,9 +71,9 @@ then
|
||||||
# CentOS exception
|
# CentOS exception
|
||||||
if [ -f /etc/centos-release ];
|
if [ -f /etc/centos-release ];
|
||||||
then
|
then
|
||||||
yum install platform-python-devel inxi
|
yum install platform-python-devel
|
||||||
else
|
else
|
||||||
yum install python-devel inxi
|
yum install python-devel
|
||||||
fi
|
fi
|
||||||
echo -e "\nInstalling necessary Python packages\n"
|
echo -e "\nInstalling necessary Python packages\n"
|
||||||
pip_pkg_install
|
pip_pkg_install
|
||||||
|
@ -88,7 +88,7 @@ else
|
||||||
separator
|
separator
|
||||||
echo -e "\nDidn't detect Debian or RedHat based distro.\n"
|
echo -e "\nDidn't detect Debian or RedHat based distro.\n"
|
||||||
echo -e "To complete installation, you need to:"
|
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 "Install necessary Python packages:"
|
||||||
echo -e "pip3 install psutil click distro power"
|
echo -e "pip3 install psutil click distro power"
|
||||||
echo -e "\nRun following sequence of lines:"
|
echo -e "\nRun following sequence of lines:"
|
||||||
|
|
Loading…
Reference in New Issue