Python Imaging Library: Difference between revisions
No edit summary |
|||
(6 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
== Website / Documentation == | |||
* http://www.pythonware.com/products/pil/ | |||
* 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== | |||
=== Installing with pip === | |||
sudo pip install pil | |||
=== Debian/Ubuntu === | |||
<source lang="bash"> | |||
sudo apt-get install python-imaging | |||
</source> | |||
=== Windows === | |||
There's a set of windows installers on the main PIL site. | |||
=== Gentoo === | |||
Installing in Gentoo: | Installing in Gentoo: | ||
<source lang="bash"> | <source lang="bash"> | ||
Line 6: | Line 27: | ||
</source> | </source> | ||
=== Macintosh === | |||
It depends a lot on the version of Mac OS you are running, but installing [[homebrew]] would be a good idea. | |||
== Examples == | |||
[ | Examples: | ||
* [[PyScrapers]] | |||
* [[PyScrapers2]] |
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: