Can't install Pillow in Windows

前端 未结 8 1154
-上瘾入骨i
-上瘾入骨i 2020-12-17 14:20

The installation process asks for zlib and I even setup & cloned it from Github. I\'m new to all of this.

Error message:

C:\\Users\\GThell\\Pillo         


        
相关标签:
8条回答
  • 2020-12-17 15:16
    pip install wheel
    pip install Pillow
    

    Worked for me

    0 讨论(0)
  • 2020-12-17 15:25

    On Windows, you're better off using precompiled binaries (wheels) than building from source.

    Python 3.6.0 final is due out later this week on 2016-12-23 and Pillow does not yet support it. Hopefully it will be supported for the next quarterly release, on 1 January 2017.

    However, in the meantime, you can download an unofficial wheel from here, then pip install filename.whl

    http://www.lfd.uci.edu/~gohlke/pythonlibs/#pillow

    0 讨论(0)
提交回复
热议问题