Category Archives: pip

error: command ‘gcc’ failed with exit status 1

ERROR:

error: command ‘gcc’ failed with exit status 1
—————————————-
ERROR: Command errored out with exit status 1: /website/st_forum3/py3_forums/bin/python3 -u -c ‘import sys, setuptools, tokenize; sys.argv[0] = ‘”‘”‘/tmp/pip-install-irkz7or4/mysqlclient/setup.py'”‘”‘; __file__='”‘”‘/tmp/pip-install-irkz7or4/mysqlclient/setup.py'”‘”‘;f=getattr(tokenize, ‘”‘”‘open'”‘”‘, open)(__file__);code=f.read().replace(‘”‘”‘\r\n'”‘”‘, ‘”‘”‘\n'”‘”‘);f.close();exec(compile(code, __file__, ‘”‘”‘exec'”‘”‘))’ install –record /tmp/pip-record-95hukcvi/install-record.txt –single-version-externally-managed –compile –install-headers /website/st_forum3/py3_forums/include/site/python3.6/mysqlclient Check the logs for full command output.


Solution:

Tested In CentOS 7 : Python 3.6 Environment

sudo yum install python36 python36-devel python36-libs python36-tools gcc-c++

 

sudo yum install gcc-c++

 


pycurl: libcurl link-time ssl backend (nss) is different from compile-time ssl backend (openssl)

 

In CentOS/Fedora : Found issue with yum package.

There was a problem importing one of the Python modules
required to run yum. The error leading to this problem was:

pycurl: libcurl link-time ssl backend (nss) is different from compile-time ssl backend (openssl)

Please install a package which provides this module, or
verify that the module is installed correctly.

It’s possible that the above module doesn’t match the
current version of Python, which is:
2.7.5 (default, Nov 6 2016, 00:28:07)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-11)]

If you cannot solve this problem yourself, please go to
the yum faq at:
http://yum.baseurl.org/wiki/Faq


 

Solution: Execute below commands in terminal.

#recompile pycurl

#upgrade pip

  •   pip install –upgrade pip

# Uninstall current pycurl

  • pip uninstall pycurl

#set PYCURL_SSL_LIBRARY

  • export PYCURL_SSL_LIBRARY=nss

# recompile and install pycurl

  • pip install –compile pycurl

# Run YUM package manager

  • yum clean all
  • yum update

Hope this post will helps..! Enjoy  🙂