How to automatically install entire Google Web Fonts collection?

Solution 1:

The existing answer in this post is out dated and does not work (specifically, the remote hg repository no longer exists).

New instructions are available here: https://github.com/google/fonts

In summary:

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

Then, as previously:

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

Solution 2:

Have you tried this: http://www.webupd8.org/2011/01/automatically-install-all-google-web.html