How to Install Fonts on Raspberry Pi? (An illustrated guide)
If you use your Raspberry Pi as a desktop computer, installing new fonts on it can be pretty useful. Unlike on other systems, doing so is not straightforward, so let me explain the main steps.
It’s possible to download new fonts online (.ttf or .otf file), and copy these files to the “.fonts” folder in the home directory to make them available on the whole system. It’s also possible to use the package manager to install packs of common fonts.
In this tutorial, I’ll introduce different ways to install and manage fonts on Raspberry Pi OS. But let’s start with some basic theory before moving forward.
If you’re feeling lost in all the Raspberry Pi jargon, I’ve got something to help you out. I’ve created a free glossary that explains all the essential terms and abbreviations in a way that’s easy to understand. It’s a great resource to have by your side. Get your free copy here.
What are fonts? Why would you need more?
A font is a graphic representation of a text, with different shapes, accentuation, or thicknesses of characters.

Fonts are used in our everyday tools. If you create a text document, PowerPoint presentation, website or infographic, you will use different fonts (common fonts are Arial, Times New Roman, Verdana, etc.).
Fonts are distributed as a font file (.ttf for example), which includes all elements to make it look the same on any device.
It can be useful to install new fonts on Raspberry Pi:
- To see websites with their original fonts.
- To create pictures with a beautiful font.
- To participate in collaborative projects with people who are not under Linux without losing the fonts they have chosen.
You can’t use Microsoft Office on your Raspberry Pi (and you don’t need it most of the time), but you at least need to install the same fonts to make Windows users happy.
How to install new fonts on Raspberry Pi
Install one specific font
Download a font file
To download a new font for your Raspberry Pi, you can look for websites that offer a catalog of fonts.
You can get answers from real experts in minutes.
Get help with your setup
For example, the following links provide this kind of service:
Bonus tip: When I started, the hardest part wasn’t the setup, it was figuring out what to build next. I ended up creating a list of 75+ project ideas with links and difficulty, so it’s easier to just pick something and try it. Grab the list here.
If you want a clearer path than jumping from tutorial to tutorial, my book gives you a step-by-step roadmap to really understand your Raspberry Pi.
Check the book hereOnce you’ve picked your favorite website, follow these steps to add a font to your Raspberry Pi:
- Choose one font that interests you.
- Download the corresponding file.
I will install “Source Sans Pro” as an example.
Install a font
Once the file is downloaded, here are the steps to follow to install it on your Raspberry Pi:
- Unzip the file.
In general, files are compressed in a ZIP file format, so you need to extract them first.- Either with the graphical tool:
- Once downloaded, go to your Downloads folder and click on the file to open it.
- The archive tool shows up.
- Click on Action > Extract (or CTRL+E, or the shortcut in the top bar).
It looks like this:
Choose a folder to extract the files temporarily. The “Downloads” folder is a good choice. Click on “Extract” to extract all the files.
- You can also extract the files in the command line:
cd ~/Downloadsunzip source-sans-pro.zip
- Either with the graphical tool:
- Then go to your home directory in the file explorer.
- Create a new folder and name it “.fonts”.
Right-click > Create new > Folder and type “.fonts”.
Use CTRL+H to display it (Folders with names starting with “.” are hidden on Raspbian).
- Then go back to the Downloads folder and copy all the “.otf” and “.ttf” files you have.
- Paste the files into the “.fonts” folder you just created.
- That’s it, your fonts are ready to use:

So it’s basically downloading files and putting them into the right location. The system will automatically detect them and make them available in all applications.
If you prefer the command line, you can also do this:
cd ~/Downloads/source-sans-pro/ cp *.otf ~/.fonts/ cp *.ttf ~/.fonts/ fc-cache -v -f
These commands will move and install all fonts immediately.
Tip: Command lines can be a pain to memorize. I put the essential Linux commands on a printable cheat sheet so you don't have to keep googling them. You can grab the PDF here if you want to save some time.
Install font packages
If you’re looking for more compatibility with fonts from other systems (Microsoft, for example), you should know that there are several packages of fonts in the repositories.
The most popular allows you to install the default fonts from Windows, and are therefore often used in many documents or websites, but that won’t work natively on Raspberry Pi.
For example, if you open a document that uses the familiar Times New Roman font, it is not available on Raspberry Pi, so it will look different than it would on a Windows computer.
To install them, you will have to follow these steps (to adapt according to the package you want to install):
- Update your APT cache:
sudo apt update - Install the package with:
sudo apt install ttf-mscorefonts-installer
Press enter to accept installing the package.
After a few moments, the package will be installed, and the Windows fonts are now available on your Raspberry Pi.
If you are not comfortable with the command line, you can go to the main menu > Preferences > Add/Remove software, and look for the same package.

How to use fonts once installed?
Now that you have installed your new fonts, how do you use them?
Bonus tip: When I started, the hardest part wasn’t the setup, it was figuring out what to build next. I ended up creating a list of 75+ project ideas with links and difficulty, so it’s easier to just pick something and try it. Grab the list here.
Well, it’s effortless, in most cases there is nothing else to do. You install the fonts, and they are available immediately in all software.
If the software was already open, you will need to restart it, or possibly reboot the Raspberry Pi.
But otherwise, it’s already functional.
As you can see below in my LibreOffice Writer, I already have all the new fonts available:

Still stuck after following this guide? Drop your question in the RaspberryTips Community — real Pi users answer fast. Post your question here.
A tool to manage fonts on Raspberry Pi
If you need a graphical tool to manage your fonts, know that there is the Font Manager package. This tool allows you to see the fonts installed on the Raspberry Pi and to search for one corresponding to your needs using different criteria.
Check this: Need a clear GPIO pinout diagram? Here's mine.
You can, for example, filter them by:
- Family Kind
- Spacing
- Slant
- Weight
- Width
- Filetype
- License
- Vendor
The interface looks like this:

To install it, look for the font-manager package, either with apt or in Preferences > Add/Remove Software, or in the command line:sudo apt install font-manager
There are many other functions that I’ll let you try, such as disabling fonts, comparing fonts or customizing the display colors to understand better how it will look on your final support.
The good news is that once installed, you can install new fonts directly by opening the .otf or .ttf file (double-click on it, and click on “Install fonts”) or via the “+” symbol in the top menu with the manager open.
Want more tutorials about Raspberry Pi OS as a desktop computer? You should probably check my other posts on the topic:
- How to Change The Desktop Appearance on Raspberry Pi?
- 17 Best Apps to Use a Raspberry Pi as a Desktop PC
- Can a Raspberry Pi 4 really Replace your Desktop PC? (I Tried)
Not getting the same result?
Even when you follow every step, small differences in OS version, hardware or config can change the outcome. Instead of wasting time guessing, get help from people who have already fixed the same kind of issue.
- Get help on your exact issue
- Access step-by-step videos for tricky setups
- Browse the website without ads

It did not work: I do not have neither the .fonts directory or the font manager.
Hi,
Try to create the .fonts folder manually: mkdir ~/.fonts
And then paste the file into
Thankss for sharing
use the font manager
sudo apt-get install font-manager
Absolutely doesn’t work the way you described it here. If I double click a .ttf file I see a pop up that asks me which application I want to use to open said file. Tested with a fresh install of rasbian 10. No option to click install.
Hi Banjo,
Ok, thanks for your feedback
I have to check this on Buster and update the post
+1 to Banjo’s comment
Hello,
I have just updated this post
So on Raspbian Buster you have two choices:
– either copy the font files manually to /home/pi/.fonts (and create the folder if needed)
– or install font-manager to make it work the same way as on Stretch (open the ttf file and click “Install fonts”)
Let me know if you still have a problem about this
Excellent, thank you!
Thanks for your feedback 🙂
It works for me. Thank you.
Thank you for this tutorial! The font manager works like a charm.