Can't install Pillow in Windows

前端 未结 8 1187
-上瘾入骨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条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-17 15:11

    I have recently installed Pillow under Cygwin's Python3.6 and needed following packages:

    • gcc-core
    • libjpeg-devel
    • zlib-devel
    • python3-devel
    • python3-setuptools (to run easy-install-3.6)

    I have also installed pip using:

    easy-install-3.6 install pip
    

    Then finally:

    pip3 install pillow
    

    succeeded.

提交回复
热议问题