Open LorenzoBuriola opened 3 years ago
I succeeded to install it by doing the following things:
python -m pip install --upgrade pip
pip install -U hdbscan
Important thing: as I use conda environment, I did steps 2 and 3 inside the target environment and could import HDBSCA in both jupyter notebooks and .py scripts (terminal like).
@edugmes Also on windows 10. Strange - for me installing the Microsoft C++ Build Tools and Windows 10 SDK independently didn't work, what ended up working was installing the full "Desktop development with C++" workload in the visual studio installer. Not sure what the delta is between the two installs (clearly the full development workload is bigger) and what the actual missing component that made the difference was.
I know that on this thing it has been written a lot but...
I am using Windows 10, Python 3.7, with all python packages updated. While running
python -m pip install hdbscan
an error pops out:It requires me to have Microsoft Visual C++ 14.0 or greater, which I have (Microsoft Visual C++ 2015-2019 Redistributable 14.28 which was installed with Visual Studio 2019 Community), but for the sake of completeness I also installed the "Microsoft C++ Build Tools".
Note that using
conda
installation everything goes fine. What is the problem withpip
?