We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42a5439 commit cb2f971Copy full SHA for cb2f971
1 file changed
install.sh
@@ -16,19 +16,19 @@ function apt_pkg_install {
16
dpkg -L $PACKAGE > /dev/null 2>&1
17
if [ "$?" == "1" ]; then
18
sudo apt update
19
- sudo apt install -y python-setuptools
+ sudo apt install -y python-setuptools python-dev python-psutil
20
fi
21
}
22
23
cd library
24
25
printf "Installing for Python 2..\n"
26
-apt_pkg_install python-setuptools
+apt_pkg_install python-setuptools python-dev python-psutil
27
python setup.py install
28
29
if [ -f "/usr/bin/python3" ]; then
30
printf "Installing for Python 3..\n"
31
- apt_pkg_install python3-setuptools
+ apt_pkg_install python3-setuptools python3-dev python3-psutil
32
python3 setup.py install
33
34
0 commit comments