-
Notifications
You must be signed in to change notification settings - Fork 449
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4769 from xoriole/add-pip-wheel
Fixed pip package issues
- Loading branch information
Showing
2 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters