Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't install wordcloud in python (Anaconda)

I am trying to install wordcloud in my python program. I am doing the following steps. Please tell me where i am doing wrong-

  1. I downloaded the wordcloud package from here https://github.com/amueller/word_cloud

  2. Copy and paste it in the Anaconda3 folder.

  3. Open Anaconda command prompt and give the following command "pip install wordcloud".

The following error is showing -

enter image description here

Please let me know what to do.

like image 294
user3503711 Avatar asked Nov 28 '22 06:11

user3503711


2 Answers

You can simply use conda package manager to install wordcloud, just run:

conda install -c https://conda.anaconda.org/conda-forge wordcloud
like image 87
Rajan Kumar Avatar answered Nov 30 '22 21:11

Rajan Kumar


There is a new version available now but this one worked for me

enter image description here

With Anaconda python 3.6

  • download from this link.
  • wordcloud 1.3.2‑cp36‑cp36m‑win_amd64.whl
  • Then don't extract the file, copy and paste the dir in cmd.
  • Use this command pip install wordcloud-1.3.2-cp36-cp36m-win_amd64.whl
like image 42
pavitra Avatar answered Nov 30 '22 21:11

pavitra