From 86c4db1bac9bb2eb840671b71a46e4aca31e9860 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phaneDucasse?= Date: Thu, 8 Aug 2024 10:43:46 +0200 Subject: [PATCH] adding brew command to install librsvg --- Chapters/4-Interpreter/figures/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Chapters/4-Interpreter/figures/README.md b/Chapters/4-Interpreter/figures/README.md index c5186a4..c1d4686 100644 --- a/Chapters/4-Interpreter/figures/README.md +++ b/Chapters/4-Interpreter/figures/README.md @@ -16,6 +16,11 @@ Converting ascii art to pdf requires two command line tools: `aasvg` and `rsvg-c npm install -g aasvg sudo apt-get install librsvg2-bin ``` +If the previous apt-get does not work + +``` + brew install librsvg +``` Figure source code is asciiart and named `*-ascii.txt`. We then convert them to svg using the following commands.