Is there a way to include Ghostscript
with cx_freeze
in virtualenv
I have tried this pip install python3_ghostscript-0.5.0-py3-none-any.whl
but still getting below error
Downloaded the .whl file from this link - https://pypi.python.org/packages/6a/2d/e2d7474bea24d223d5dc86d51241fd305b75a9168f2e1d7ee07b883c80a5/python3_ghostscript-0.5.0-py3-none-any.whl#md5=0e3a24a374c0d9cc1f2008801ead6927
Error: RuntimeError: Please make sure that Ghostscript is installed
Installing the Ghostscript in my Windows system won't solve the problem as I need to include it in my build from cx_freeze
so that non-python installed systems can use my desktop application which is build using Tkinter
Basically I am using camelot
to convert pdf tables to excel but it needs Ghostscript
Any alternative solutions are more than welcome!
Thanks in Advance!