don't install python3-pip on travis as not available there

This commit is contained in:
Cyryl Plotnicki-Chudyk 2015-07-19 13:28:34 +02:00
parent 953474e86e
commit 0cb51c52c8
2 changed files with 2 additions and 2 deletions

View file

@ -74,7 +74,7 @@ echo "installing todoman"
cd "$DIR/common/todoman/" cd "$DIR/common/todoman/"
sudo python3 setup.py install sudo python3 setup.py install
echo "installing vdirsyncer" echo "installing vdirsyncer"
sudo pip3 install vdirsyncer sudo pip install vdirsyncer
echo echo
echo "now go ahead and restart" echo "now go ahead and restart"

View file

@ -6,7 +6,7 @@ COMMAND_PREFIX="DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::=\"-
curl --silent --location https://deb.nodesource.com/setup_0.12 | sudo bash curl --silent --location https://deb.nodesource.com/setup_0.12 | sudo bash
sudo apt-get update sudo apt-get update
INSTALL_COMMAND="sudo $COMMAND_PREFIX install meld whois zsh tmux vim atop aria2 curl pv gajim tor torsocks nodejs terminator gsmartcontrol python-pip mesa-utils mesa-utils-extra aptitude p7zip-full p7zip-rar thunderbird mercurial kdiff3 gnupg2 python3-setuptools realpath python3-dev python3 python3-pip" INSTALL_COMMAND="sudo $COMMAND_PREFIX install meld whois zsh tmux vim atop aria2 curl pv gajim tor torsocks nodejs terminator gsmartcontrol python-pip mesa-utils mesa-utils-extra aptitude p7zip-full p7zip-rar thunderbird mercurial kdiff3 gnupg2 python3-setuptools realpath python3-dev python3"
eval ${INSTALL_COMMAND} eval ${INSTALL_COMMAND}
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"