Python Imaging Library: Difference between revisions
No edit summary |
|||
(One intermediate revision by the same user not shown) | |||
Line 3: | Line 3: | ||
* http://www.pythonware.com/products/pil/ | * http://www.pythonware.com/products/pil/ | ||
* http://www.pythonware.com/library/pil/handbook/index.htm | * http://www.pythonware.com/library/pil/handbook/index.htm | ||
== Tutorials == | |||
* http://www.pythonforbeginners.com/modules-in-python/how-to-use-the-python-imaging-library/ | |||
==Installation== | ==Installation== | ||
=== | === Installing with pip === | ||
sudo pip install pil | |||
=== Debian/Ubuntu === | |||
<source lang="bash"> | <source lang="bash"> | ||
sudo apt-get install python-imaging | |||
</source> | </source> | ||
=== | === Windows === | ||
There's a set of windows installers on the main PIL site. | |||
=== Gentoo === | |||
Installing in Gentoo: | |||
<source lang="bash"> | <source lang="bash"> | ||
emerge imaging | |||
</source> | </source> | ||
=== Macintosh === | === Macintosh === | ||
It depends a lot on the version of Mac OS you are running, but installing [[homebrew]] would be a good idea. | |||
== Examples == | == Examples == |
Latest revision as of 18:37, 7 November 2013
Website / Documentation
Tutorials
Installation
Installing with pip
sudo pip install pil
Debian/Ubuntu
sudo apt-get install python-imaging
Windows
There's a set of windows installers on the main PIL site.
Gentoo
Installing in Gentoo:
emerge imaging
Macintosh
It depends a lot on the version of Mac OS you are running, but installing homebrew would be a good idea.
Examples
Examples: