OSError: Unable to locate Ghostscript on paths

While reading in an EPS file, I get the error “OSError: Unable to locate Ghostscript on paths” Here’s my code that generates the error: def _readImage(self, image): actual_file = image # Try each, and open the one that actually exists: if exists(CFG.image_source + image.replace(“.gif”, “.eps”)): actual_file = image.replace(“.gif”, “.eps”) elif exists(CFG.image_source + image.replace(“.gif”, “.png”)): actual_file…(Continue Reading)