How do I install PIL/Pillow for Python 3.6?

后端 未结 3 1806
予麋鹿
予麋鹿 2020-12-05 04:10

I have a script that requires PIL to run. Other than downgrading my Python, I couldn\'t find anyway to install PIL on my Python 3.6

Here are my attempts:

<         


        
3条回答
  •  死守一世寂寞
    2020-12-05 04:26

    You can download the wheel corresponding to your configuration here ("Pillow‑4.1.1‑cp36‑cp36m‑win_amd64.whl" in your case) and install it with:

    pip install some-package.whl

    If you have problem to install the wheel read this answer

提交回复
热议问题