Commit 12a9d6d4 by devttys0

Minor patches.

parent f7211798
...@@ -105,6 +105,12 @@ function debian ...@@ -105,6 +105,12 @@ function debian
if [ "$(which python3)" != "" ] if [ "$(which python3)" != "" ]
then then
$SUDO apt-get -y install python3-pyqt4 python3-numpy python3-scipy $SUDO apt-get -y install python3-pyqt4 python3-numpy python3-scipy
$SUDO apt-get -y install python3-pip
PIP="$(which pip-3* | head -1)"
if [ "$PIP" != "" ]
then
$SUDO $PIP install PyOpenGl
fi
fi fi
} }
...@@ -116,6 +122,12 @@ function redhat ...@@ -116,6 +122,12 @@ function redhat
if [ "$(which python3)" != "" ] if [ "$(which python3)" != "" ]
then then
$SUDO yum -y install python3-pyqt4 python3-numpy python3-scipy $SUDO yum -y install python3-pyqt4 python3-numpy python3-scipy
$SUDO yum -y install python3-pip
PIP="$(which pip-3* | head -1)"
if [ "$PIP" != "" ]
then
$SUDO $PIP install PyOpenGl
fi
fi fi
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment