diff options
author | Christoph Kluenter <ckluente@thoughtworks.com> | 2015-11-11 10:21:20 +0100 |
---|---|---|
committer | Christoph Kluenter <ckluente@thoughtworks.com> | 2015-11-11 10:21:20 +0100 |
commit | e6c846918071d210a7769f378c4691e4f28997d8 (patch) | |
tree | 265936648111879fee0d73ae35b26cafe4813424 | |
parent | 83dd4e5eae44708775f5ff8b54519ea53115ccc8 (diff) |
install pip before setuptools
pip is used to install setuptools.
So use latest pip to install latest setuptools
-rwxr-xr-x | install-pixelated.sh | 2 |
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 |