I am trying to install something called 'diptest' from a local copy of this https://github.com/alimuldal/diptest on centos via the command line.
I have installed everything I can for gcc. The gcc version is:
# gcc --versiongcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-39)
But when I try to install, I get the following:
(virtual-env)# python3 setup.py installrunning installrunning buildrunning build_pyrunning build_extskipping 'diptest/_diptest.c' Cython extension (up-to-date)building 'diptest._diptest' extensiongcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -I/opt/denovo/watchdog-venv/lib64/python3.6/site-packages/numpy/core/include -I/opt/denovo/watchdog-venv/include -I/usr/include/python3.6m -c diptest/_dip.c -o build/temp.linux-x86_64-3.6/diptest/_dip.o -O3 -std=c99gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -I/opt/denovo/watchdog-venv/lib64/python3.6/site-packages/numpy/core/include -I/opt/denovo/watchdog-venv/include -I/usr/include/python3.6m -c diptest/_diptest.c -o build/temp.linux-x86_64-3.6/diptest/_diptest.o -O3 -std=c99diptest/_diptest.c:8:22: fatal error: pyconfig.h: No such file or directory #include "pyconfig.h" ^compilation terminated.error: command 'gcc' failed with exit status 1
Does anyone have any suggestions about how I can learn more details about what is failing? I've been successful installing this diptest module before. I installed multiple libraries to get gcc to work but it is still complaining.
How do I know what is missing or what I need to install in order to sucessfully install diptest?
Thank you!