web-dev-qa-db-ja.com

Python 3.6のPIL / Pillowをインストールするにはどうすればよいですか?

PILを実行する必要があるスクリプトがあります。 Pythonをダウングレードする以外に、Python 3.6にPILをインストールする方法が見つかりませんでした

私の試みは次のとおりです。

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 Pillow
Collecting Pillow
  Using cached Pillow-3.3.1.Zip
Installing collected packages: Pillow
  Running setup.py install for Pillow ... error
    Complete output from command c:\python\python36\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\ABDULR~1\\AppData\\Local\\Temp\\pip-build-rez5zpri\\Pillow\\setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record C:\Users\ABDULR~1\AppData\Local\Temp\pip-a5bugnjo-record\install-record.txt --single-version-externally-managed --compile:
    Single threaded build for windows
    running install
    running build
    running build_py
    creating build
    creating build\lib.win-AMD64-3.6
    creating build\lib.win-AMD64-3.6\PIL
    copying PIL\......................
    ..................................
    ..................................
    running Egg_info
    writing Pillow.Egg-info\PKG-INFO
    writing dependency_links to Pillow.Egg-info\dependency_links.txt
    writing top-level names to Pillow.Egg-info\top_level.txt
    warning: manifest_maker: standard file '-c' not found

    reading manifest file 'Pillow.Egg-info\SOURCES.txt'
    reading manifest template 'MANIFEST.in'
    warning: no files found matching '*.sh'
    no previously-included directories found matching 'docs\_static'
    warning: no previously-included files found matching '.coveragerc'
    warning: no previously-included files found matching '.editorconfig'
    warning: no previously-included files found matching '.landscape.yaml'
    warning: no previously-included files found matching 'appveyor.yml'
    warning: no previously-included files found matching 'build_children.sh'
    warning: no previously-included files found matching 'tox.ini'
    warning: no previously-included files matching '.git*' found anywhere in distribution
    warning: no previously-included files matching '*.pyc' found anywhere in distribution
    warning: no previously-included files matching '*.so' found anywhere in distribution
    writing manifest file 'Pillow.Egg-info\SOURCES.txt'
    copying PIL\OleFileIO-README.md -> build\lib.win-AMD64-3.6\PIL
    running build_ext
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\ABDULR~1\AppData\Local\Temp\pip-build-rez5zpri\Pillow\setup.py", line 753, in <module>
        Zip_safe=not debug_build(), )
      File "c:\python\python36\lib\distutils\core.py", line 148, in setup
        dist.run_commands()
      File "c:\python\python36\lib\distutils\dist.py", line 955, in run_commands
        self.run_command(cmd)
      File "c:\python\python36\lib\distutils\dist.py", line 974, in run_command
        cmd_obj.run()
      File "c:\python\python36\lib\site-packages\setuptools\command\install.py", line 61, in run
        return orig.install.run(self)
      File "c:\python\python36\lib\distutils\command\install.py", line 539, in run
        self.run_command('build')
      File "c:\python\python36\lib\distutils\cmd.py", line 313, in run_command
        self.distribution.run_command(command)
      File "c:\python\python36\lib\distutils\dist.py", line 974, in run_command
        cmd_obj.run()
      File "c:\python\python36\lib\distutils\command\build.py", line 135, in run
        self.run_command(cmd_name)
      File "c:\python\python36\lib\distutils\cmd.py", line 313, in run_command
        self.distribution.run_command(command)
      File "c:\python\python36\lib\distutils\dist.py", line 974, in run_command
        cmd_obj.run()
      File "c:\python\python36\lib\distutils\command\build_ext.py", line 338, in run
        self.build_extensions()
      File "C:\Users\ABDULR~1\AppData\Local\Temp\pip-build-rez5zpri\Pillow\setup.py", line 521, in build_extensions
        ' using --disable-%s, aborting' % (f, f))
    ValueError: zlib is required unless explicitly disabled using --disable-zlib, aborting

    ----------------------------------------
Command "c:\python\python36\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\ABDULR~1\\AppData\\Local\\Temp\\pip-build-rez5zpri\\Pillow\\setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record C:\Users\ABDULR~1\AppData\Local\Temp\pip-a5bugnjo-record\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in C:\Users\ABDULR~1\AppData\Local\Temp\pip-build-rez5zpri\Pillow\

引数--disable-zlibを追加することを知らなかった、pip install Pillow --disable-zlibは正しくありませんでした。

ここに私のシステムに一致するものが見つかりませんでした: https://pypi.python.org/pypi/Pillow/3.0.

64ビットWindows 10およびPython 3.6

50

pythonバージョン2.xの場合は、単に使用できます

  • pip install pillow

ただし、pythonバージョン3.Xの場合は、指定する必要があります

  • (Sudo) pip3 install pillow

bashヒットタブでpipを入力すると、使用可能なオプションが表示されます

63
Pranav Naxane

構成に対応するホイールをダウンロードできますhere ( "Pillow‑4.1.1‑cp36‑cp36m‑win_AMD64.whl 「あなたの場合)とでインストール:

pip install some-package.whl

ホイールの取り付けに問題がある場合は、 この回答 を読んでください

4
Gabriel

枕は、Windowsのインストールホイールと共にリリースされます。

Wheel、Egg、および実行可能インストーラーで、32ビットバージョンと64ビットバージョンの両方でサポートされるPythonのマトリックス用にコンパイルされたWindows用Pillowバイナリを提供します。これらのバイナリには、オプションのライブラリがすべて含まれています

https://pillow.readthedocs.io/en/3.3.x/installation.html#basic-installation

更新:Python 3.6がPillowでサポートされるようになりました。 pip install pillowを使用してインストールし、詳細について https://pillow.readthedocs.io/en/latest/installation.html を確認してください。


ただし、Python 3.6はまだアルファ版であり、公式にはまだサポートされていませんが、テストはすべて夜間のPythonビルド(現在3.6a4)に合格しています。

https://travis-ci.org/python-pillow/Pillow/jobs/155605577

3.5ホイールを3.6に取り付けることが何らかの形で可能であれば、それが最善の策です。それ以外の場合、zlibにもかかわらず、ソースからビルドする必要があり、MS Visual C++コンパイラが必要であり、これは簡単ではありません。ヒントについては、以下を参照してください。

https://pillow.readthedocs.io/en/3.3.x/installation.html#building-from-source

また、AppVeyor CI上のWindows用にどのように構築されているかも確認します(ただし、まだ3.5または3.6ではありません)。

https://github.com/python-pillow/Pillow/tree/master/winbuild

それに失敗したら、Python 3.5にダウングレードするか、3.6がPillowでサポートされるまで待ちます。おそらく3.6の公式リリースに近いでしょう。

1
Hugo