pcb-rnd-svg command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pcb-rnd-svg: command not found
or when using sudo you get the following error message
sudo: pcb-rnd-svg: command not found
Solutions to pcb-rnd-svg: command not found
How To Fix pcb-rnd-svg: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pcb-rnd-svg is provided by pcb-rnd-export package.
pcb-rnd-export is:
Export the board in vector graphics (svg, ps, eps), raster graphics (png, jpeg, etc.), gerber, 3d model in openscad, xy for pick and place, BoM, etc.
To fix this problem, we can install more using the command below.
sudo apt-get -y install pcb-rnd-export
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pcb-rnd-export.
sudo apt -y install pcb-rnd-export
Or if you have aptitude installed you can use the following command.
sudo aptitude install pcb-rnd-export
Summary
In this tutorial we learn how to fix pcb-rnd-svg command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.