Known Issues¶
This page will list known issues with the Python agent. Including any information we have to help fix any problems.
Missing Python.h file when installing NerdVision¶
When installing the NerdVision Python module you get an error:
psutil/_psutil_common.c:9:20: fatal error: Python.h: No such file or directory
#include <Python.h>
^
compilation terminated.
error: command 'i686-linux-gnu-gcc' failed with exit status 1
The solution is to install the missing python-dev package which includes the Python header files needed for the compilation. These can be installed using the standard package manager on linux.
apt install python-dev
yum install python-devel
apt install python3.5-dev