web-dev-qa-db-ja.com

PILをインストールしようとするとエラーが発生する

PILをインストールしようとしましたが、エラーが発生しました。どうすればよいですか?

$ Command
Result
------------
$ pip install PIL

Collecting PIL
  Could not find a version that satisfies the requirement PIL (from versions: )
No matching distribution found for PIL
--------------------------------------------------------------------
$ pip install PIL  --allow-unverified PIL --allow-all-external

DEPRECATION: --allow-all-external has been deprecated and will be removed in the future. Due to changes in the repository protocol, it no longer has any effect.
DEPRECATION: --allow-unverified has been deprecated and will be removed in the future. Due to changes in the repository protocol, it no longer has any effect.
Collecting PIL
  Could not find a version that satisfies the requirement PIL (from versions: )
No matching distribution found for PIL
31
Shira

代わりに Pillow を使用してみてください。これはPILフォークです。

pip install Pillow

使用をインポートするには:

from PIL import Image
67
maviz

ライブラリPILPillowにあります。これを試して:

$ pip install Pillow
5
Fomalhaut

これよりも良い方法があるかどうかはわかりません。しかし、これはドキュメントで説明されているように機能する場合があります。

http://www.pythonware.com/products/pil/

ソースキットをダウンロードして抽出します。抽出したら、キットの説明に従って以下を実行します。

    $ tar xvfz Imaging-1.1.7.tar.gz
    $ cd Imaging-1.1.7
    $ python setup.py install
1
Vivek Akupatni