Ubuntu的默认中文是哪种呢?
fc-list :lang=zh
用这个命令查看出来
NotoSerifCJK-Bold.ttc
为什么要知道这个呢?
来看一块python3代码
import jieba
import wordcloud
f = 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")
然后发生了什么呢?


本文探讨了如何在Ubuntu系统中设置默认中文显示,并通过Python的WordCloud库生成词云图。介绍了使用fc-list命令查看系统字体,以及利用jieba进行中文分词,最后展示了如何配置WordCloud的字体路径。

被折叠的 条评论
为什么被折叠?



