From 3125127cce8748f50dd034241b0fcc7dedecca36 Mon Sep 17 00:00:00 2001 From: some1and2 <89313812+Some1and2-XC@users.noreply.github.com> Date: Tue, 9 Jul 2024 03:53:27 +0000 Subject: [PATCH] fix: Updated Ubuntu Install Example Fixed example for installation tools on ubuntu. `ninja` doesn't exist on apt however `ninja-build` does. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a0557fc..a3b4044 100644 --- a/README.md +++ b/README.md @@ -157,7 +157,7 @@ Use your package manager to install the required dev-tools For example on ubuntu: ``` -sudo apt-get install build-essential cmake git ninja python3 +sudo apt-get install build-essential cmake git ninja-build python3 ``` On Arch linux, you can directly install the [shaderc package](https://www.archlinux.org/packages/extra/x86_64/shaderc/).