Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed pip package issues #4769

Merged
merged 2 commits into from
Aug 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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