-
Notifications
You must be signed in to change notification settings - Fork 3.4k
{Packaging} Install bz2 module in embedded Python on Linux #32163
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -21,7 +21,8 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
| # Update APT packages | ||
| apt-get update | ||
| # uuid-dev is used to build _uuid module: https://github.com/python/cpython/pull/3796 | ||
| apt-get install -y libssl-dev libffi-dev python3-dev zlib1g-dev uuid-dev wget debhelper | ||
| # libbz2-dev is used to install bz2 module: https://github.com/Azure/azure-cli/pull/32163 | ||
| apt-get install -y libssl-dev libffi-dev python3-dev zlib1g-dev uuid-dev wget debhelper libbz2-dev | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How about RPM? Does the system Python installed by RPM already have
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, the RPM system Python contains this module.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The optional package
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's better to mention
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Never mind, this comment already serves this purpose. |
||
| # Git is not strictly necessary, but it would allow building an experimental package | ||
| # with dependency which is currently only available in its git repo feature branch. | ||
| apt-get install -y git | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.