Ubuntu的默认中文是哪种呢?
fc-list :lang=zh
用这个命令查看出来
NotoSerifCJK-Bold.ttc
为什么要知道这个呢?
来看一块python3代码
import jieba
import wordcloudf = open("threekingdom.txt","rb")
t = f.read()
f.close()
ls = jieba.lcut(t)
txt = " ".join(ls)
w = wordcloud.WordCloud( font_path = "NotoSerifCJK-Bold.ttc",\width = 1000,height = 700,background_color = "white",\) w.generate(txt)
w.to_file("gr.png")