Skip to content Skip to sidebar Skip to footer

Installing Pymssql In Centos 6.6 64-bit

I'm trying to pip install pymssql in my Centos 6.6, but kept on experiencing this error: _mssql.c:314:22: error: sqlfront.h: No such file or directory cpp_helpers.h:34:19: error

Solution 1:

Looking at the full traceback we see that include_dirs includes /usr/local/include but the header files are in /usr/include which I imagine has to do with the fact python 2.7 is not the system python.

You can change the setup.py script to include /usr/include or copy the files into /usr/local/include

Post a Comment for "Installing Pymssql In Centos 6.6 64-bit"