Java教程

ubuntu 字体安装 —— 以nerd font为例

本文主要是介绍ubuntu 字体安装 —— 以nerd font为例,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

首先下载文件

	wget -c https://github.com/ryanoasis/nerd-fonts/releases/download/v2.0.0/SourceCodePro.zip
	或者:
	git clone https://github.com/blobject/agave.git

然后解压到文件夹:

	sudo unzip SourceCodePro -d /usr/share/fonts/SourceCodePro
	或者:
	suod cp agave/*.ttf /usr/share/fonts/

转到/usr/share/fonts/SourceCodePro目录,并安装

	cd /usr/share/fonts/SourceCodePro
	或者
	cd /usr/share/fonts/agave
	sudo mkfontscale # 生成核心字体信息
	sudo mkfontdir # 生成字体文件夹
	sudo fc-cache -fv # 刷新系统字体缓存

参考链接

这篇关于ubuntu 字体安装 —— 以nerd font为例的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!