Skip to content

Commit cb2f971

Browse files
committed
Added dependencies needed for lite versions
1 parent 42a5439 commit cb2f971

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ function apt_pkg_install {
1616
dpkg -L $PACKAGE > /dev/null 2>&1
1717
if [ "$?" == "1" ]; then
1818
sudo apt update
19-
sudo apt install -y python-setuptools
19+
sudo apt install -y python-setuptools python-dev python-psutil
2020
fi
2121
}
2222

2323
cd library
2424

2525
printf "Installing for Python 2..\n"
26-
apt_pkg_install python-setuptools
26+
apt_pkg_install python-setuptools python-dev python-psutil
2727
python setup.py install
2828

2929
if [ -f "/usr/bin/python3" ]; then
3030
printf "Installing for Python 3..\n"
31-
apt_pkg_install python3-setuptools
31+
apt_pkg_install python3-setuptools python3-dev python3-psutil
3232
python3 setup.py install
3333
fi
3434

0 commit comments

Comments
 (0)