How to use PIL with PyPy?

前端 未结 2 866
南方客
南方客 2021-02-09 00:08

I searched a little bit but I couldn\'t find a tuto to use PIL with PyPy. According to PyPy\'s blog, PIL is supported.

  • I installed PIL with pip in my PYTHONPATH.
2条回答
  •  迷失自我
    2021-02-09 01:04

    I had no easy_install or pip installed, so followed the instructions in pip's documentation:

    wget https://bootstrap.pypa.io/get-pip.py
    pypy get-pip.py
    pypy -m pip install pillow
    

提交回复
热议问题