When I ./configure
, it produced error message.
configure: error: Python.h not found, locate this file and contact ISSM developers
In my environment, Python.h
's actual location is /foo/bar/python/include/python3.7m
.
In the m4/issm_options.m4
file, there is code corresponding to my situation as follows:
634 else if test -f "$PYTHON_ROOT/include/python$PYTHON_VERSIONm/Python.h"; then
635 PYTHONINCL=-I$PYTHON_ROOT/include/python$PYTHON_VERSIONm
However, I think it should be
634 else if test -f "$PYTHON_ROOT/include/python${PYTHON_VERSION}m/Python.h"; then
635 PYTHONINCL=-I$PYTHON_ROOT/include/python${PYTHON_VERSION}m
to work properly.