I was able to complete setup.py successfully by replacing ``` ... include_dirs = [dbscan_dir, numpy_include_dir] ``` with ``` import numpy as np ... include_dirs = [dbscan_dir, np.get_include()] ``` Python 3.5, numpy 1.13.3
I was able to complete setup.py successfully by replacing
with
Python 3.5, numpy 1.13.3