rendersvg command not found

In this troubleshooting guide we learn how to fix rendersvg command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

rendersvg: command not found

or when using sudo you get the following error message

sudo: rendersvg: command not found

Solutions to rendersvg: command not found

How To Fix rendersvg: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu rendersvg is provided by resvg package.

resvg is:

resvg is a command-line utility to render SVG files based on a static SVG Full 1.1 subset. It is a fast, small, portable, multiple backend SVG library designed for edge-cases.

resvg supports Cairo and Qt backends.

To fix this problem, we can install more using the command below.

sudo apt-get -y install resvg

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install resvg.

sudo apt -y install resvg

Or if you have aptitude installed you can use the following command.

sudo aptitude install resvg

Summary

In this tutorial we learn how to fix rendersvg command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.