From 32138fddf27f82eb41599e767e99618b00b53771 Mon Sep 17 00:00:00 2001 From: Galit Date: Wed, 1 Aug 2018 12:00:50 +0300 Subject: [PATCH] Guide how to install pycurl Signed-off-by: Galit --- docs/Installation.rst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/Installation.rst b/docs/Installation.rst index 544a5c6..748df6b 100644 --- a/docs/Installation.rst +++ b/docs/Installation.rst @@ -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: + ImportError: pycurl: libcurl link-time ssl backend (openssl) is different from + 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