Install Fira Code Font for Ubuntu
This tutorial provides instructions for installing the Fira Code font in various versions of Ubuntu. This is my favorite font due to its various ligatures.
Ubuntu 16.04
1sudo apt-install git
2cd /tmp
3git clone https://github.com/tonsky/FiraCode.git
4sudo mv -i /tmp/FiraCode/distr/ttf /usr/share/fonts/truetype/fira-code
5sudo fc-cache -fv
Ubuntu 17.04, 18.04, 20.04 and later
1sudo apt update && \
2sudo apt install fonts-firacode
More?
Installation for other systems: https://github.com/tonsky/FiraCode/wiki/Linux-instructions
Related Posts
Install OpenCV 4 on macOS using Homebrew
This is my note on how to install OpenCV 4 on macOS with Homebrew. I tested this tutorial on my Macbook Air 2020 with Apple silicon (M1 chip).
Read moreMy development environment on macOS - Macbook Air M1
I maintain this note as my instruction for setting up macOS for development. Currently, I apply this on my Macbook Air M1 2020 - 16GB RAM and 512GB SSD.
Read morePaper review: CenterTrack - CenterPoint - CenterPoint++
This is my note for 3 papers: CenterTrack - 2D object tracking, CenterPoint - 3D object detection and tracking, and CenterPoint++ - submission to the Waymo Real-time 3D Detection Challenge.
Read more