I am struggling to get 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'
I used the pip install method in my command prompt to get wordcloud into my environment. It said "requirement already satisfied". I then used the conda install -c conda-forge wordcloud method and even after doing this I continue to get the same error.
What am I doing wrong? My Python version is 3.6.2.

