Skip to content

Commit

Permalink
Merge pull request #4769 from xoriole/add-pip-wheel
Browse files Browse the repository at this point in the history
Fixed pip package issues
  • Loading branch information
qstokkink authored Aug 27, 2019
2 parents 0f2f623 + f20dd16 commit 360172b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 4 additions & 2 deletions debian/tribler.postinst
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
if which pip >/dev/null 2>&1; then
# 2019-08-26 wheel is necessary for other pip installs
pip install --upgrade wheel
# Install pony orm with pip since it is not available in Debian repository
pip install --user pony>=0.7.9
pip install --upgrade pony==0.7.9
# 2019-02-13; Add lz4 compression ; Remove this once this library is updated in Debian repo
pip install --user lz4
pip install --upgrade lz4
fi
2 changes: 2 additions & 0 deletions debian/tribler.prerm
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ if which pip >/dev/null 2>&1; then
pip uninstall -y pony
# Remove lz4 from pip
pip uninstall -y lz4
# Remove wheel the last
pip uninstall -y wheel
fi

0 comments on commit 360172b

Please sign in to comment.