I need to solve a wordcloud problem for a homework assignment.
Unfortunately, I am having a hard time getting wordcloud installed into my environment.
Here is the code I am running:
import os
import matplotlib.pyplot as plt
from wordcloud import WordCloud
I get the following error:
ImportError: No module named 'wordcloud'
Now, I know I need to use the pip install method in my command prompt to get wordcloud into my environment. Even after doing this (and trying several different destinations, including my home directory and the Anaconda3 environment), I continue to get the same error.
What am I doing wrong?