pstoedit command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pstoedit: command not found
or when using sudo you get the following error message
sudo: pstoedit: command not found
Solutions to pstoedit: command not found
How To Fix pstoedit: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pstoedit is provided by pstoedit package.
pstoedit is:
pstoedit converts Postscript and PDF files to various editable vector graphic formats including tgif, xfig, PDF graphics, gnuplot format, idraw, MetaPost, GNU Metafile, PIC, Kontour and flattened PostScript.
To fix this problem, we can install more using the command below.
sudo apt-get -y install pstoedit
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pstoedit.
sudo apt -y install pstoedit
Or if you have aptitude installed you can use the following command.
sudo aptitude install pstoedit
Summary
In this tutorial we learn how to fix pstoedit command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.