如何自动安装整个Google Web字体集合?


13

我基本上是在寻找一种无人值守的方式来将Google Web Fonts集合部署/安装到几个Ubuntu盒子中。我已经搜索了PPA,软件包或用户脚本,但是运气不佳。

任何建议将不胜感激。在此先多谢!

Answers:


10

这篇文章中的现有答案已过期且无法使用(特别是远程hg存储库不再存在)。

此处提供了新说明:https//github.com/google/fonts

综上所述:

wget https://github.com/google/fonts/archive/master.zip
unzip master.zip

然后,如前所述:

sudo mkdir -p /usr/share/fonts/truetype/google-fonts/
find ./fonts-master/ -name "*.ttf" -exec sudo install -m644 {} /usr/share/fonts/truetype/google-fonts/ \; || return 1
fc-cache -f > /dev/null

5

我确实做到了,不仅失败了,而且还安装了Mercurial客户端以及其他功能-我目前正在寻找一种更清洁的方法。
Nano Taboada

1
甚至官方说明也指出了使用Mercurial的代码:code.google.com/p/googlefontdirectory。该脚本在这里工作得很好...也许您是在代理后面或阻止Mercurial的东西?
阿林·安德烈

我认为该教程的位置信息不是很丰富googlefontdirectory,这就是为什么Gimp或Inkscape之类的应用程序当前无法加载它们的原因。您介意向我们提供有关如何实现此目标的说明吗?
Nano Taboada

1
文章中的脚本会在系统范围内安装字体(在/ usr / share / fonts / truetype / google-fonts下),然后使用“ fc-cache -f”更新字体缓存,以便Gimp可以选择它们,等等。 。
阿林安德烈

就是棒 !
AlvaroAV 2015年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.