2013-08-29 203 views
0

您好,我在Windows 7上運行Python 2.7 64位。我在網上發現了一個名爲img2pdf.py的python腳本,它可能對我非常有用,但我無法運行它。我已經安裝了枕頭庫win64(從http://www.lfd.uci.edu/~gohlke/pythonlibs/) 和Image.py存在於「C:\ Python27 \ Lib \ site-packages \ PIL」img2pdf.py「no module named Image」

我已經將腳本下載到包含我的目錄圖像和Python是我的道路上,但是當我在命令提示符下鍵入

python img2pdf.py myimage.j2k 

我拿到指出

Traceback (most recent call last): 
    File "img2pdf.py" line 18, in <module> 
    import Image 
ImportError: No module named Image 

有什麼我錯過了一個錯誤?

回答

2

在枕頭上庫鏈接,它寫的是:

注:使用from PIL import Image代替import Image

但是,當我看向我發現here的img2pdf.py腳本,它是寫import Image。所以我想你必須按照上面的指定編輯你的img2pdf.py。

+0

當然。我的錯。 – marcp

0
  1. 安裝Python for Windows,例如, 「蟒蛇-3.5.0-amd64.exe」 - > C:\ Python的
  2. 解壓壓縮存檔img2pdf到C:\ Python中的\ Sources \ img2pdf
  3. 轉到C:\ Python的\腳本
  4. 運行pip.exe install ..\Sources\img2pdf
  5. 封裝現在可以從命令行中C 「img2pdf.exe」:\的Python \腳本