diff options
author | Christoph <c@kluenter.de> | 2015-11-11 10:16:45 +0100 |
---|---|---|
committer | Christoph <c@kluenter.de> | 2015-11-11 10:16:45 +0100 |
commit | 83dd4e5eae44708775f5ff8b54519ea53115ccc8 (patch) | |
tree | ce1fc941eaa5e1886e9ac8f07135997e772cc312 | |
parent | f18fcf1649debaf1ddf382c8657e5b5256cbd7b7 (diff) | |
parent | 63c1517c0ea4045aeccac270e1818ba754cffd65 (diff) |
Merge pull request #519 from juniorz/fix-518
Split pip and setuptools upgrade
-rwxr-xr-x | install-pixelated.sh | 4 |
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 |