在 Windows 10 上导入 Ghostscript

Importing Ghostscript on Windows 10

我正在尝试将 ghostscript 导入 Python

当我键入 import ghostscript 时,我收到以下错误消息:

Traceback (most recent call last): File "<pyshell#0>", line 1, in import ghostscript File "C:\Users...\AppData\Local\Programs\Python\Python38-32\lib\site-packages\ghostscript_init_.py", line 35, in from . import _gsprint as gs File "C:\Users...\AppData\Local\Programs\Python\Python38-32\lib\site-packages\ghostscript_gsprint.py", line 505, in raise RuntimeError('Can not find Ghostscript DLL in registry') RuntimeError: Can not find Ghostscript DLL in registry

我正在使用 Windows 10.

我已确认我正在使用 Python 3.8.3,32 位。

我找到了这个帖子:Importing Ghostscript in Python on Windows 8,但它不是很有用。

有什么建议吗?

我不确定如何确定我使用的是 32 位还是 64 位版本的 ghostscript。

编辑#1:

我通过 python -m pip install ghostscript

安装了 Ghostscript

根据 the documentationghostscript PyPi 包需要现有的 Ghostscript 安装:

python-ghostscript requires

  • Python 2.7 or higher (tested with Python 2.7, 3.4, 3.6 and 3.6)
  • setuptools for installation (see below)
  • Ghostscript Version 8.x or higher (tested with 9.x)

您可以从 pypi.org or ghostscript.com 下载 Windows 的 Ghostscript。