how do I solve " Failed building wheel for hdbscan "?

Viewed 6737

I tried to download Hdbscan using pip install hdbscan , I get this :

ERROR: Failed building wheel for hdbscan

ERROR: Could not build wheels for hdbscan which use PEP 517 and cannot be installed directly

I've tried several solutions, it didn't work tho.

2 Answers

Try to install the equivalent python3.[x]-dev package.

For ex, for python3.8 use: sudo apt install python3.8-dev

Related