Export to GitHub

pyodbc - issue #358

not installing - missimg 'sql.h'


Posted on Jan 29, 2014 by Quick Rabbit

$ sudo pip install pyodbc

// ----- LOG ----------------------------------------------------------------------- sudo pip install pyodbc Downloading/unpacking pyodbc Running setup.py egg_info for package pyodbc

warning: no files found matching 'tests/*'

Installing collected packages: pyodbc Running setup.py install for pyodbc building 'pyodbc' extension gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -DPYODBC_VERSION=3.0.7 -I/usr/include/python2.7 -c /home/chuiii/build/pyodbc/src/errors.cpp -o build/temp.linux-i686-2.7/home/chuiii/build/pyodbc/src/errors.o -Wno-write-strings cc1plus: warning: command line option ‘-Wstrict-prototypes’ is valid for Ada/C/ObjC but not for C++ [enabled by default] In file included from /home/chuiii/build/pyodbc/src/errors.cpp:2:0: /home/chuiii/build/pyodbc/src/pyodbc.h:52:17: fatal error: sql.h: No such file or directory compilation terminated. error: command 'gcc' failed with exit status 1 Complete output from command /usr/bin/python -c "import setuptools;file='/home/chuiii/build/pyodbc/setup.py';exec(compile(open(file).read().replace('\r\n', '\n'), file, 'exec'))" install --single-version-externally-managed --record /tmp/pip-6zB5KR-record/install-record.txt: running install

running build

running build_ext

building 'pyodbc' extension

gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -DPYODBC_VERSION=3.0.7 -I/usr/include/python2.7 -c /home/chuiii/build/pyodbc/src/errors.cpp -o build/temp.linux-i686-2.7/home/chuiii/build/pyodbc/src/errors.o -Wno-write-strings

cc1plus: warning: command line option ‘-Wstrict-prototypes’ is valid for Ada/C/ObjC but not for C++ [enabled by default]

In file included from /home/chuiii/build/pyodbc/src/errors.cpp:2:0:

/home/chuiii/build/pyodbc/src/pyodbc.h:52:17: fatal error: sql.h: No such file or directory

compilation terminated.

error: command 'gcc' failed with exit status 1


Command /usr/bin/python -c "import setuptools;file='/home/chuiii/build/pyodbc/setup.py';exec(compile(open(file).read().replace('\r\n', '\n'), file, 'exec'))" install --single-version-externally-managed --record /tmp/pip-6zB5KR-record/install-record.txt failed with error code 1 Storing complete log in /home/chuiii/.pip/pip.log // ---------------------------------------------------------------------------------

Version of pyodbc == 3.0.7

Comment #1

Posted on Feb 3, 2014 by Happy Monkey

Comment deleted

Comment #2

Posted on Feb 3, 2014 by Helpful Dog

You need to install the unixODBC (or iODBC if you are using it) header files.

For RedHat based systems, you would install the unixODBC-devel RPM package. I'm not sure what you are using, but you can might find more information in the Wiki pages and the forum.

Good luck.

Comment #3

Posted on Aug 13, 2014 by Swift Giraffe

You need to install the developement version for the header files. On uBuntu use:

sudo apt-get install unixODBC-dev

Status: NoFix

Labels:
Type-Defect Priority-Medium