Problem with installation of Wordcloud in anaconda

+2 votes

I am trying to install "wordcloud" package in anaconda, but am not able to do it. I am getting the below error.

UnsatisfiableError: The following specifications were found to be in conflict: - wordcloud - xlsxwriter Use "conda info " to see the dependencies for each package.
Mar 26, 2018 in Data Analytics by kurt_cobain
• 9,390 points
18,005 views

3 answers to this question.

0 votes

Try either of the below commands:

pip install wordcloud
conda install -c conda-forge wordcloud

Hope it works!!

To find out more about Google Cloud, join Google Cloud training today.

Thanks!

answered Mar 26, 2018 by Bharani
• 4,660 points
Hi Sir;

Iam not able to install wordcloud in python pls do help me!

I tried the above codes but still it not.
Hey there! Could you please post the error you are getting while installing wordcloud?
+1 vote

Using Anaconda Python 3.6 version For Windows you can do it as:

  • Installation of wordcloud package
  • download wordcloud‑1.3.2‑cp36‑cp36m‑win_amd64.whl from
    http://www.lfd.uci.edu/~gohlke/pythonlibs/#wordcloud
  • Copy the file to your current working directory
  • Open command prompt
  • python -m pip install wordcloud-1.3.2-cp36-cp36m-win_amd64.whl
answered Aug 7, 2018 by Priyaj
• 58,090 points
0 votes

Try this:

conda remove anaconda --force

Once you've removed anaconda, now try doing conda update --all, or any other operation you need to. With that metapackage out of the picture, the solver should have an easier time resolving dependency conflicts

answered Dec 4, 2018 by Kalgi
• 52,360 points

Related Questions In Data Analytics

+1 vote
2 answers

Custom Function to replace missing values in a vector with the mean of values

Try this. lapply(a,function(x){ifelse(is.na(x),mean(a,na.rm = TRUE ...READ MORE

answered Aug 14, 2019 in Data Analytics by anonymous
1,610 views
+1 vote
2 answers

How to count the number of elements with the values in a vector?

Use dplyr function group_by(). > n = as.data.frame(num) > ...READ MORE

answered Aug 21, 2019 in Data Analytics by anonymous
• 33,030 points
4,527 views
0 votes
1 answer

How to write a custom function which will replace all the missing values in a vector with the mean of values in R?

Consider this vector: a<-c(1,2,3,NA,4,5,NA,NA) Write the function to impute ...READ MORE

answered Jul 4, 2018 in Data Analytics by CodingByHeart77
• 3,740 points
4,190 views
+1 vote
1 answer

problem with tabitems in shiny R

Check your braces. Code tabitems after aws ...READ MORE

answered Nov 30, 2018 in Data Analytics by Maverick
• 10,840 points
1,597 views
0 votes
0 answers
0 votes
1 answer

Counting the number of elements with the values of x in a vector

You may simply use the table() method: > ...READ MORE

answered Jun 14, 2022 in Data Analytics by Sohail
• 3,040 points
288 views
0 votes
1 answer

'Conda' is not recognized as internal or external command

I was coming across the same issue ...READ MORE

answered Feb 11, 2022 in Python by Soham
• 9,700 points
26,658 views
0 votes
7 answers
+10 votes
3 answers

Which is a better initiative to learn data science: Python or R?

Well it truly depends on your requirement, If ...READ MORE

answered Aug 9, 2018 in Data Analytics by Abhi
• 3,720 points
1,102 views
+1 vote
4 answers

Python vs. R for data science

I would say both Python and R ...READ MORE

answered Aug 1, 2019 in Data Analytics by briny
1,476 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP