nicodv / kmodes

Python implementations of the k-modes and k-prototypes clustering algorithms, for clustering categorical data
MIT License
1.23k stars 416 forks source link

Please add conda installation information #182

Closed sugatoray closed 2 years ago

sugatoray commented 2 years ago

kmodes can be installed with conda from conda-forge channel. Please add that to your methods of installation in README.

conda install -c conda-forge kmodes

Alternatively, if you have mamba installed in the same conda environment, just replace conda with mamba in the command above to get a quicker installation.

# conda install -c conda-forge mamba
mamba install -c conda-forge kmodes

Source:

nicodv commented 2 years ago

Ah, that explains why the no. of monthly downloads took a huge jump upwards.

Updated the README in https://github.com/nicodv/kmodes/commit/66c4dffa2fe7a35a5fe52abf1159c93dbfe346e3

Thanks for reporting, @sugatoray !