summaryrefslogtreecommitdiff
path: root/install-pixelated.sh
diff options
context:
space:
mode:
authorDuda Dornelles <ddornell@thoughtworks.com>2015-02-12 11:30:22 -0200
committerDuda Dornelles <ddornell@thoughtworks.com>2015-02-12 11:32:19 -0200
commit9455d7e338b93517bfd00903cb286e79b2023244 (patch)
tree5f09f52eb8ab818cb665b59411856fe71acd788c /install-pixelated.sh
parent43037a80d49ccf4232f4d0b85091d1cfbf8a6f40 (diff)
#272 upgrade setuptools before installing dependencies on install-pixelated, otherwise on a wheezy box errors will happen when installing dependencies
Diffstat (limited to 'install-pixelated.sh')
-rwxr-xr-xinstall-pixelated.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/install-pixelated.sh b/install-pixelated.sh
index 934f6543..55fcc172 100755
--- a/install-pixelated.sh
+++ b/install-pixelated.sh
@@ -99,9 +99,8 @@ cd ../service
rm -rf "$VIRTUALENV_PATH"
virtualenv "$VIRTUALENV_PATH"
source "$VIRTUALENV_PATH/bin/activate"
+pip install --upgrade setuptools
./go setup --always-unzip
-# see https://github.com/pixelated-project/pixelated-user-agent/issues/225#issuecomment-70651268
-# for details why we need to reinstall enum34
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