0

Linux mint 64にpython2.7でPIL1.2をインストールしました。実行しpython setup.py build_ext -iました。そして、以下の情報を得ました。

running build_ext
--------------------------------------------------------------------
PIL 1.2a0 SETUP SUMMARY
--------------------------------------------------------------------
version       1.2a0
platform      Python 2.7.3 (default, Apr 10 2013, 05:13:16)
              [GCC 4.7.2] on linux2
--------------------------------------------------------------------
*** TKINTER support not available (Tcl/Tk 8.5 libraries needed) 
--- JPEG support available
*** WEBP support not available 
--- ZLIB (PNG/ZIP) support available
--- FREETYPE2 support available
--- LITTLECMS support available
--------------------------------------------------------------------
To add a missing option, make sure you have the required
library, and set the corresponding ROOT variable in the
setup.py script.

To check the build, run the selftest.py script.

*しかし、私が走ったときpython selftest.pyjpgエラーが出ました*

'--------------------------------------------------------------------
PIL 1.2a0 TEST SUMMARY 
--------------------------------------------------------------------
Python modules loaded from ./PIL
Binary modules loaded from ./PIL
--------------------------------------------------------------------
--- PIL CORE support ok
*** TKINTER support not installed
*** JPEG support not installed
*** WEBP support not installed
*** ZLIB (PNG/ZIP) support not installed
--- FREETYPE2 support ok
--- LITTLECMS support ok
--------------------------------------------------------------------
Running selftest:
**********************************************************************
File "./selftest.py", line 50, in selftest.testimage
Failed example:
    try:
     _info(Image.open(os.path.join(ROOT, "Images/lena.jpg")))
    except IOError:
     pass
Expected:
    ('JPEG', 'RGB', (128, 128))
Got nothing
**********************************************************************
1 items had failures:
   1 of  58 in selftest.testimage
***Test Failed*** 1 failures.
*** 1 tests of 58 failed.

テストに合格できない理由
ちなみに、PIL1.7.1 は私のコンピューターで動作します。しかし、II は に変換できませYcbCrnumpy.array。そして、彼らはバージョン1.2がこのバグを修正したと言いました

4

1 に答える 1

0

私はこの問題を解決しました

aptitude search  python_pip
pip uninstall PIL
pip install pillow
于 2013-09-04T04:59:20.273 に答える