summaryrefslogtreecommitdiff
path: root/install-pixelated.sh
diff options
context:
space:
mode:
authorReinaldo de Souza Jr <juniorz@gmail.com>2015-11-10 18:16:56 -0200
committerReinaldo de Souza Jr <juniorz@gmail.com>2015-11-10 18:16:56 -0200
commit63c1517c0ea4045aeccac270e1818ba754cffd65 (patch)
treece1fc941eaa5e1886e9ac8f07135997e772cc312 /install-pixelated.sh
parentf18fcf1649debaf1ddf382c8657e5b5256cbd7b7 (diff)
Split pip and setuptools upgrade
Fixes #518
Diffstat (limited to 'install-pixelated.sh')
-rwxr-xr-xinstall-pixelated.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/install-pixelated.sh b/install-pixelated.sh
index 2823e56d..522ac980 100755
--- a/install-pixelated.sh
+++ b/install-pixelated.sh
@@ -103,7 +103,9 @@ cd ../service
rm -rf "$VIRTUALENV_PATH"
virtualenv "$VIRTUALENV_PATH"
source "$VIRTUALENV_PATH/bin/activate"
-pip install --upgrade setuptools pip
+# they can't be on the same command because it breaks pip upgrade
+pip install --upgrade setuptools
+pip install --upgrade pip
./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