After installing UMAP still
ModuleNotFoundError: No module named 'umap.plot'
Maybe missing package? Documentation says:
The umap.plot package requires extra plotting libraries to be installed.
You can install these via pip using
pip install umap-learn[plot]
or via conda using
conda install seaborn datashader bokeh holoviews
I have the same problem. All requirements for plotting and umap itself are installed.
pip install umap-learn[plot] gives:
Collecting umap-learn[plot]
umap-learn 0.3.10 does not provide the extra 'plot'
... [the list of satisfied requirements follows]...
Installing collected packages: umap-learn
Successfully installed umap-learn-0.3.10
Please note the second line.
Plus!!! I have the same problem and I was very upset when a few days ago, I could not find it!
You need to install the pre-release version at this time. You can do that via:
pip install --pre umap-learn
You can check that you have the right version by ensuring that you have umap-learn 0.4.0rc1.
Thank you! It did work for me!
Most helpful comment
You need to install the pre-release version at this time. You can do that via:
You can check that you have the right version by ensuring that you have umap-learn 0.4.0rc1.