Home>Article>Backend Development> How to install pil in python
PIL: Python Imaging Library is already the de facto image processing standard library for the Python platform. PIL is very powerful, but the API is very simple and easy to use.
Since PIL only supports Python 2.7 and is in disrepair, a group of volunteers created a compatible version based on PIL, named Pillow, which supports the latest Python 3.x and has added many New feature, therefore, we can install and use Pillow directly.
Install Pillow: pip install Pillow(Recommended learning:Python video tutorial)
If you see the words success..., it means the installation is successful.
For more Python related technical articles, please visit thePython Tutorialcolumn to learn!
The above is the detailed content of How to install pil in python. For more information, please follow other related articles on the PHP Chinese website!