当前位置: 首页 > 工具软件 > Font Manager > 使用案例 >

matplotlib中font_manager.FontProperties找不到路径中的字体

农飞星
2023-12-01

MAC系统

在使用matplotlib画图时,由于其默认不支持中文,所以有时候需要更换使用的字体,在使用

font_manager.FontProperties("/System/Library/Fonts/PingFang.ttc")

时路径中明明有相应的字体但却仍提示无法找到,原因可能是路径中的"/"被当做转意字符来处理了,只需更改代码为

font_manager.FontProperties(fname=r"/System/Library/Fonts/PingFang.ttc")

 

 类似资料: