You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -154,7 +160,7 @@ Easiest install, if you have Anaconda (thanks to conda-forge which is awesome!):
154
160
155
161
conda install -c conda-forge hdbscan
156
162
157
-
PyPI install, presuming you have sklearn and all its requirements installed:
163
+
PyPI install, presuming you have sklearn and all its requirements (numpy and scipy) installed:
158
164
159
165
.. code:: bash
160
166
@@ -166,6 +172,7 @@ the dependencies manually using anaconda followed by pulling hdbscan from pip:
166
172
.. code:: bash
167
173
168
174
conda install cython
175
+
conda install numpy scipy
169
176
conda install scikit-learn
170
177
pip install hdbscan
171
178
@@ -188,13 +195,28 @@ or
188
195
189
196
.. code:: bash
190
197
191
-
conda install scikit-learn cython
198
+
conda install scikit-learn cython
192
199
193
200
Install the package
194
201
195
202
.. code:: bash
196
203
197
204
python setup.py install
205
+
206
+
----------------
207
+
Help and Support
208
+
----------------
209
+
210
+
For simple issues you can consult the `FAQ <https://hdbscan.readthedocs.io/en/latest/faq.html>`_ in the documentation.
211
+
If your issue is not suitably resolved there, please check the `issues <https://github.com/scikit-learn-contrib/hdbscan/issues>`_ on github. Finally, if no solution is available there feel free to `open an issue <https://github.com/scikit-learn-contrib/hdbscan/issues/new>`_ ; the authors will attempt to respond in a reasonably timely fashion.
212
+
213
+
------------
214
+
Contributing
215
+
------------
216
+
217
+
We welcome contributions in any form! Assistance with documentation, particularly expanding tutorials,
218
+
is always welcome. To contribute please `fork the project <https://github.com/scikit-learn-contrib/hdbscan/issues#fork-destination-box>`_ make your changes and submit a pull request. We will do our best to work through any issues with
219
+
you and get your code merged into the main branch.
0 commit comments