1.官网下载python
这里选择下载稳定版本
右键以管理员身份运行
点击继续,直到出现如下界面
安装完成并打开使用
2.安装worldcloud包
然后就有俄罗斯套包等着你,一直不停的装
3.制作词云
然后就输入代码
>>> import jieba
>>> import wordcloud
>>> f = open("C:/Users/Lovely Girl/Desktop/工作/多伦湖.txt", "r", encoding="utf-8")
>>> t = f.read()
>>> f.close()
>>> ls = jieba.lcut(t)
>>> txt = " ".join(ls)
>>> w = wordcloud.WordCloud( \
width = 700, height = 300,\
background_color = "white",
font_path = "msyh.ttc",max_words = 20
)
>>> w.generate(txt)
>>> w.to_file("C:/Users/Lovely Girl/Desktop/工作/多伦湖.png")
最后生成图片