2

I use Python 3.3. Just downloaded and installed ghostscript 32 bit (GPL release), but I can't import it.

I'm using the command:

import ghostscript

and I receive the error:

ImportError: No module named ghostscript

I tried it with capital 'G', still doesn't work. Any ideas?

4

2 に答える 2

5

Ghostscript だけをインストールする必要はありませんが、Python モジュールもインストールする必要があります。ここからダウンロードします: http://pypi.python.org/pypi/ghostscriptファイルを解凍し、実行しますpython setup.py install

このモジュールは Python 3 で動作すると報告されていないため、おそらく Python 2 を使用する必要があります。また、Windows ではテストされていません。

于 2013-02-16T08:10:20.453 に答える