summaryrefslogtreecommitdiff
path: root/install-pixelated.sh
diff options
context:
space:
mode:
authorChristoph Kluenter <ckluente@thoughtworks.com>2015-11-11 10:21:20 +0100
committerChristoph Kluenter <ckluente@thoughtworks.com>2015-11-11 10:21:20 +0100
commite6c846918071d210a7769f378c4691e4f28997d8 (patch)
tree265936648111879fee0d73ae35b26cafe4813424 /install-pixelated.sh
parent83dd4e5eae44708775f5ff8b54519ea53115ccc8 (diff)
install pip before setuptools
pip is used to install setuptools. So use latest pip to install latest setuptools
Diffstat (limited to 'install-pixelated.sh')
-rwxr-xr-xinstall-pixelated.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/install-pixelated.sh b/install-pixelated.sh
index 522ac980..35b77fa5 100755
--- a/install-pixelated.sh
+++ b/install-pixelated.sh
@@ -104,8 +104,8 @@ rm -rf "$VIRTUALENV_PATH"
virtualenv "$VIRTUALENV_PATH"
source "$VIRTUALENV_PATH/bin/activate"
# they can't be on the same command because it breaks pip upgrade
-pip install --upgrade setuptools
pip install --upgrade pip
+pip install --upgrade setuptools
./go setup --always-unzip
pip uninstall -y enum34 && pip install enum34
pip uninstall -y pysqlcipher && pip install pysqlcipher # this is needed so pysqlcipher gets recompiled with the right version of glibc