-
Notifications
You must be signed in to change notification settings - Fork 10
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
Guide how to install pycurl #61
base: master
Are you sure you want to change the base?
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 |
---|---|---|
|
@@ -55,3 +55,19 @@ RPM Based - Fedora 24+ / CentOS 7 | |
.. code:: bash | ||
|
||
$ sudo yum install lago-ovirt | ||
|
||
3. Install ovirt-engine-sdk-python==4.2.7 | ||
|
||
pycurl is a dependency required when installing ovirt-engine-sdk-python | ||
|
||
An error message received: | ||
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. You can add a section for troubleshooting like we have in lago: http://lago.readthedocs.io/en/latest/Installation.html |
||
ImportError: pycurl: libcurl link-time ssl backend (openssl) is different from | ||
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. Please surround the code with |
||
compile-time ssl backend (none/other) | ||
|
||
Steps to fix the problem: | ||
% pip remove pycurl | ||
% pip uninstall pycurl | ||
|
||
% pip install --compile --no-cache-dir --with-openssl pycurl | ||
or | ||
% pip install --compile --no-cache-dir --with-nss pycurl |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't require a specific version of the sdk.