ContinuumIO / parallel_dbscan

Python module for the parallel dbscan based on NWU code
18 stars 11 forks source link

"numpy/ndarrayobject.h not found" #2

Open hcl14 opened 6 years ago

hcl14 commented 6 years ago

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