Getting an error with Camelot, "Ghostscript is not installed".
Tried everything, the issue is that it is not added to path, gs IS installed on the machine.
Failing the following check from Camelot install page https://camelot-py.readthedocs.io/en/master/user/install-deps.html...
For Ghostscript Open the Python REPL and run the following:
For Ubuntu/MacOS:
from ctypes.util import find_library
find_library("gs")
"libgs.so.9"
Check: The output of the find_library function should not be empty.
If the output is empty, then it’s possible that the Ghostscript library is not available one of the LD_LIBRARY_PATH/DYLD_LIBRARY_PATH/PATH variables depending on your operating system. In this case, you may have to modify one of those path variables.
...
The output is returning empty.
So that is the issue, needs to be added to these paths, I have no idea how to do it.
Step by step instructions would be fantastic.
as above as above as