Install pip

This commit is contained in:
snare 2016-09-15 08:59:03 +10:00
parent 76ae765b7e
commit 7c9b13495b
1 changed files with 2 additions and 2 deletions

View File

@ -35,9 +35,9 @@ function install_apt {
if uname | grep -i Linux &>/dev/null; then
sudo apt-get update
if echo $PYVER|grep "3\."; then
sudo apt-get -y install libreadline6-dev python3-dev python3-setuptools python3-yaml
sudo apt-get -y install libreadline6-dev python3-dev python3-setuptools python3-yaml python3-pip
else
sudo apt-get -y install libreadline6-dev python-dev python-setuptools python-yaml
sudo apt-get -y install libreadline6-dev python-dev python-setuptools python-yaml python-pip
fi
fi
}