Skip to content
mozahzah edited this page Feb 9, 2025 · 2 revisions

Installing Freetype

FreeType is available via both apt and dnf package managers. To install it, follow these steps:

  1. Install GLFW3:

    • Using apt:
      sudo apt install libfreetype6 libfreetype6-dev
    • Using dnf:
      sudo dnf install freetype freetype-devel
  2. Verify Installation:

    • Using apt:
      dpkg -l | grep libfreetype
    • Using dnf:
      dnf list --installed freetype-devel
      

Installing Glfw

GLFW3 is available through both the apt and dnf package managers. To install it, follow these steps:

  1. Install GLFW3:

    • Using apt:
      sudo apt install libglfw3 libglfw3-dev
    • Using dnf:
      sudo dnf install glfw-devel
  2. Verify Installation:

    • Using apt:
      dpkg -l | grep libglfw
    • Using dnf:
      dnf list --installed glfw-devel
Clone this wiki locally