Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Sigil

Notices

Reply
 
Thread Tools Search this Thread
Old 03-11-2016, 01:58 AM   #1
seanos
Zealot
seanos began at the beginning.
 
seanos's Avatar
 
Posts: 101
Karma: 12
Join Date: Apr 2010
Location: Melbourne, Australia
Device: Kobo Sage, Kobo Aura H2O, LG V20
Building 0.9.3 on Ubuntu 14.04

OK, so I’ve made a start but these requirements:
  • python3.4-tk
  • python3.4-lxml
  • python3.4-six

don't appear to be there at all if you use Synaptic. The command line resolves them to:
  • python3-tk
  • python3-lxml
  • python3-six

I think both lxml and six are installed along the way anyway.

Optional plugin requirements
Most of these are OK, but…

There is no Pillow, but there seems to be a fork - python3-pil. It’s not from a standard repo though.

There is a python-cssselect but no python3-cssselect.

It’s a bit unclear from the instructions when you might require these though.

Despite these quibbles, Sigil itself seems to have built OK and it runs. A fairly time- & disk-consuming process (especially downloading/installing Qt!) but it works.
seanos is offline   Reply With Quote
Old 03-11-2016, 03:22 AM   #2
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,584
Karma: 22735033
Join Date: Dec 2010
Device: Kindle PW2
Quote:
There is no Pillow, but there seems to be a fork - python3-pil. It’s not from a standard repo though.

There is a python-cssselect but no python3-cssselect.
Under Linux some of these Python packages are available as standalone .deb packages others need to be installed via pip3. You can test if you have all recommended packages by installing and running the Sigil test plugin.

As for cssselect and Pillow, try installing them with pip3:

Code:
sudo pip3 install cssselect
sudo pip3 install Pillow
If pip3 isn't found install python3-pip.
Doitsu is offline   Reply With Quote
Advert
Old 03-11-2016, 08:54 AM   #3
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 27,552
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
I won't pretend that the Linux package names might not stay current. Adjust accordingly. They worked when I created the document (back when python3-* still got you Python 3.3.x on ubuntu/mint), and I always tend to assume that Linux users are fairly resourceful and resilient (as it indeed seems you were ). I'm not going to be chasing exact linux package names, nor updating the documentation every-other week.

The list of additional Python modules needed for a complete Sigil plugin environment are not Linux software package names, but rather, they are the official Python module names useable with pip(3) or easy_install to install from the python.org Python Package Index (pypi.python.org). Since not all Linux flavors use synaptic, I chose to list the additional modules in a distro-agnostic manner. 'pip3 install Pillow' should work on just about any flavor/version out there.

Not being a technical writer, it was never my intention to create a document that someone with no experience with Linux package-management and/or little to no experience configuring/building/compiling software on Linux could use to easily build Sigil with no effort. It is primarily a guide for those with the inclination/knowledge who just need a push in the right direction.

I'm happy to offer assistance, however, when Linux users with questions come here to ask for it. It happens quite a bit, and there are enough Linux Sigil users around here that they rarely have to wait long for help getting it built.

Glad to see you adapted and overcame the document's limitations, though. Seriously. That has always been my hope for a document that--if I'm entirely honest--I hated every second I spent creating.

If anyone wishes to contribute detailed, distro-specific instructions/tips for building Sigil from scratch (or instructions for installing Sigil 0.9.x from distro-specific repositories), I would happily include them in a compendium of user-contributed instructions that I could link to from the BuildingOnLinux document.

Last edited by DiapDealer; 03-11-2016 at 12:53 PM.
DiapDealer is offline   Reply With Quote
Old 03-12-2016, 01:14 AM   #4
seanos
Zealot
seanos began at the beginning.
 
seanos's Avatar
 
Posts: 101
Karma: 12
Join Date: Apr 2010
Location: Melbourne, Australia
Device: Kobo Sage, Kobo Aura H2O, LG V20
I must admit one of my biggest bugbears is the western world’s obsession with binary oppositions and I find the two opposing views of what Linux (perhaps especially Ubuntu) and Linux users should be, rather annoying. Every time I’ve tried to learn things about Python I’ve been put off by the complexity of different versions, the attachment to byte=char and the geek attitude that you can only usefully swallow the knowledge whole. There is no middle ground. It’s all a little like joining a cult.

Once upon a time, Linux was purely the realm of dedicated computer nerds, and that has definitely changed, but reactions to this change seem to be either a) you must learn every technical detail and be absorbed by the collective or b) use a GUI program that assumes you want to know nothing and/or do nothing useful (see Nautilus for a perfect example).

I have done some programming, but I would not call myself a programmer. I still find man pages ugly and tedious to pore over, but what you can do with all those bits and pieces is pretty impressive. So I consider myself to be in that middle ground of users who primarily want to do things other than programming with their OS, but are prepared for a bit of scripting, etc. to get where they want to go.

I don’t consider building from source itself to be particularly difficult. A bit tedious, yes. It’s providing useful, coherent instructions that’s the hard part and I think you did that very well for the most part.

It did occur to me that those packages might involve using pip, but since it continued on from a discussion of Debian packages it wasn’t clear. I also had some bad experiences the last time I used pip.

It’s always great to find helpful Linux users, but clear documentation is still better than time spent searching forums.
seanos is offline   Reply With Quote
Old 03-12-2016, 01:41 AM   #5
seanos
Zealot
seanos began at the beginning.
 
seanos's Avatar
 
Posts: 101
Karma: 12
Join Date: Apr 2010
Location: Melbourne, Australia
Device: Kobo Sage, Kobo Aura H2O, LG V20
Quote:
Originally Posted by Doitsu View Post
Under Linux some of these Python packages are available as standalone .deb packages others need to be installed via pip3. You can test if you have all recommended packages by installing and running the Sigil test plugin.

As for cssselect and Pillow, try installing them with pip3:

Code:
sudo pip3 install cssselect
sudo pip3 install Pillow
If pip3 isn't found install python3-pip.
Thanks for your assistance, Doitsu.

No problem with cssselect, but I get errors with Pillow.

Code:
…
ValueError: jpeg is required unless explicitly disabled using --disable-jpeg, aborting

----------------------------------------
Cleaning up...
  Removing temporary dir /tmp/pip_build_root...
Command /usr/bin/python3 -c "import setuptools, tokenize;__file__='/tmp/pip_build_root/Pillow/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-oozytx9k-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /tmp/pip_build_root/Pillow
Exception information:
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/pip/basecommand.py", line 122, in main
    status = self.run(options, args)
  File "/usr/lib/python3/dist-packages/pip/commands/install.py", line 283, in run
    requirement_set.install(install_options, global_options, root=options.root_path)
  File "/usr/lib/python3/dist-packages/pip/req.py", line 1436, in install
    requirement.install(install_options, global_options, *args, **kwargs)
  File "/usr/lib/python3/dist-packages/pip/req.py", line 707, in install
    cwd=self.source_dir, filter_stdout=self._filter_install, show_stdout=False)
  File "/usr/lib/python3/dist-packages/pip/util.py", line 715, in call_subprocess
    % (command_desc, proc.returncode, cwd))
pip.exceptions.InstallationError: Command /usr/bin/python3 -c "import setuptools, tokenize;__file__='/tmp/pip_build_root/Pillow/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-oozytx9k-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /tmp/pip_build_root/Pillow
Full pip.log
Spoiler:
Downloading/unpacking Pillow
Getting page https://pypi.python.org/simple/Pillow/
URLs to search for versions for Pillow:
* https://pypi.python.org/simple/Pillow/
Analyzing links from page https://pypi.python.org/simple/pillow/
Skipping link https://pypi.python.org/packages/2.4...a134b48ae48746 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.4...73fa7990d30c8a (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.4...37feb58fc428fe (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.4...1774ae35e9e709 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.5...3f5e9b7bb172c3 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.5...d781901c1ecded (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.5...ae5f3dc4c43f98 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.5...0d00e39494c663 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...3d0a9e88ddfa31 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...aba985815a249b (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...aced37768720be (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...fccc78f10c21b1 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...00f0d657b41fc7 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...7fb45d795f1d4d (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...8050dd1f9842f5 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...6726e3d5675e2e (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...7c054d75dbcc2f (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...d775de6ea67786 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...615a47e6d363e9 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...8884bdafbcfa9e (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...ee0b5c44a58d42 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping https://pypi.python.org/packages/2.6...5afeffdfebc149 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/2.6...32dc06a69204dc (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping link https://pypi.python.org/packages/2.6...fd60b76c42cda2 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...13b99aca1b0f19 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...46647867402c23 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...6234d4270a15d2 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...f77827146cca06 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...210a5357045646 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...e41a957fa50db5 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...c280552d729691 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...c8f62d97706ebd (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...fc7735fc758a0c (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...b32f3db4783ecc (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...196a8690e2c46f (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...6520e44249a858 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...a6e4f90ff4b512 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...7242ae2f97167a (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...c485b0aede701f (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...4ea85e47d678d4 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...f3156734c4bead (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...8c735cba89f736 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...b7e81545828f7b (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...4e4ed23736a8c7 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...c66a1c3edcb7bc (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...ed11e0c8697e92 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...34b458d1b78684 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...62b1da0ff239ab (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...583471ff565117 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...d6eccb339d818a (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...84543023a9178d (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...8f97a6358a8df4 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...4e39b7cae56326 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...9fef43e621a062 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...4b21854ac9de8b (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...9e4985b4df86d8 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...912ed63ce00185 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...2b2a9dca2c3539 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...bb682b5e7e663c (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...76d73d025e2cb4 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...3ad78b009b042f (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...9b41b1ac6e0b21 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...5a0c350f191578 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...8f5765a298d5d5 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...32c9c1b62faa12 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...ac1463533d6701 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...71dcaf0ac0292e (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...2d05320fc0fb09 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...6515a9a4e99956 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...52fca936f88222 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...9bf7745339efb7 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...42f4a7b647e680 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...b1a20d6ed53b35 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...51f3b7f163fd17 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...ae167ddb8dbe24 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...c3aadc0d4e3523 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...ed8a8cddb6037a (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...055a9f043cfb96 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...bd4a35336494a0 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...286a2143f100cb (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...d0033005709058 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...ec0a40ea021763 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...f06252f7f697e1 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...e93e91ea479ad4 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...415b9b599acd56 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...4d3ea9a13eb07d (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...30bff7dc4acc72 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...1c02f682d93779 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...9d9c500c3fd95f (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...ba5696bd557af2 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...3cbb7f7b733bf5 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...70eabbc7f6946c (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...1549d69e158c50 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...d3c184d1b0cdd8 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...3c136a07b1db75 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...eaf89af134dc0c (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...d9994f08d56a49 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.6...b71c6b963091d6 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.6...7be504bfb28f50 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...73faf1ff510372 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...5734ca4453cd0d (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...99f23d0028ea14 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...75ec4b508a515f (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...a7158c12d08654 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...1430d5c363622d (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...87ad7681435e30 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...add3dd8d9b96b0 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...1e52306f426173 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...7f92c7c5e415e1 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...b2393de72f26c9 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...48255b96639b69 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...770bce3a8486e6 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping https://pypi.python.org/packages/2.7...a7bb2388040776 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/2.7...1e77a248165f8e (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping link https://pypi.python.org/packages/2.7...59c52ae3c890b0 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...16b7d8147898cb (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...68cb743a396320 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...8cc0f450c6d76d (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...5742990244bae4 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...cbaa8a9bf15a32 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...c3e4511620fdaf (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...e3ba77b697de87 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...a2a9d0a786f5be (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...1d69cbda29769d (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...e2ec49b5a82aae (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...a405d8c9aa9300 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...51fe72e9e9ff63 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...faff651d027fcc (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...e2f47e28c4e1aa (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...3daf59af213c5e (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...9c2b601e4dc46a (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...b1c8c3e5e28879 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...e65e48786c5e2c (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...bb450fef0d2810 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping https://pypi.python.org/packages/2.7...bd51c4a78e6844 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping link https://pypi.python.org/packages/2.7...165ca7d9e63d3f (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...94c279cc5542cf (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...f1fa852513e791 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...ad541fbe8057fe (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping https://pypi.python.org/packages/2.7...ca0126c93e27dc (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping link https://pypi.python.org/packages/2.7...d0f1e6e8175c04 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...0e4c266bea62b8 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...4e05a236661b29 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...104d50dce812b3 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping https://pypi.python.org/packages/2.7...f6e51f682586d5 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping link https://pypi.python.org/packages/2.7...37e5d84307a47d (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...99e9b75d6af6ee (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...9b4651084090c8 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...d3508be5e0369d (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...d0b5c741740f80 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...137219a4fe2945 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...f2f74bf634a446 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...fa54d7563be5a3 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...f904e6cbbb13a4 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...5f6f93f5b42e0c (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...de525421087e14 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...5a31f2bd2224dd (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...f205d3cae3a407 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...564106a118c9db (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...b3ee2c19da3799 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...b18b6f85a2a5e2 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...6c17db5a408e11 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...8b4519970057d8 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...0a56efd8d27b29 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...34e8fa7af680db (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...d86f951782258b (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...85400a61d42ef8 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...8fa46ffd614af3 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...d1c1513d80a0a2 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...5f840c0674fd5a (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...227bbbda986417 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...c6aeecd633aff8 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...8fd19a20eeeda0 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...5b51795dbfb511 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...9efa51619e732b (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...d286b61f0b5b05 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...b411ade70a356a (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...7460345a62fbf3 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...dba37b91712a51 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...7875e45af6814f (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...fb7700b6806912 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...25b90155e2c8a9 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...05007ffc8d6c1d (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...7f387c399fdc30 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...92e8f08175f05b (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...60e6f14856edfc (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...18856d160828e6 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...aa5e025f9bbadb (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...adc69abbb0e693 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...c6ce93bfe8597e (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...e39bbec3ec03ec (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/2.7...737dd801894e2f (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/2.7...0c8516a289c9da (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...8aba29bf0cfdc3 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...639075d85065b9 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...cb85d4385b3590 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...83a3982ac4e545 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...017972df65c192 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...a7f343bd70360a (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...c602bf7f01d9e3 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...1b5572a1c83ce7 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping https://pypi.python.org/packages/3.2...d2be119c6bc678 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/3.2...cb54eb53d8f2af (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping link https://pypi.python.org/packages/3.2...35e5ab2af37639 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...3ba390774b97ff (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...bfe701f1f15dc8 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...49e0173989d58d (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...b1692495ed73b8 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...f09cb5b978e072 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...a6ccd76c09a6fe (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...c7620b5872816b (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...0170a755abbe97 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...5758b5ac019880 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...d24a6161011724 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...f4641ec6a1d19f (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...e3af81f6138974 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...93d6fd732283b2 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...a3885bd493a8c4 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...9a7cf415948fa7 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...9953da92572ba5 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...52e32afd8570f1 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...daad13b98ea721 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...d1dade9b35baab (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping https://pypi.python.org/packages/3.2...8b186a043bc7ab (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping link https://pypi.python.org/packages/3.2...d5bee853c07ccc (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...dfb28386ad4ce9 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...334c0a75b1e105 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...03ca1809410777 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping https://pypi.python.org/packages/3.2...97be0c9d02796e (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping link https://pypi.python.org/packages/3.2...fe85ed2772df64 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...ebf1e211297918 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...e5248dceef6967 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...ba3217cc03a0ee (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping https://pypi.python.org/packages/3.2...2c84fc814234b2 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping link https://pypi.python.org/packages/3.2...0df1124ceea179 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...81c3fd7293622b (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...228f7c72e5cd6b (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...7f4296b955745c (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...f23bbeccf1be96 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...c349d832e74dcd (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...58cbd5ed4c9a82 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...c6425160cff9f8 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...d965300c8d123d (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...6807f32fd32a82 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...ec5b1439822c94 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...4622211c855c4c (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...2311c01b2971d9 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...1b2670ed36bf49 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...50f7d286f76d01 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...653abd58e19002 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...ec99c7f1b4bdfc (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...710b1cb80724e3 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...6e4a0f1eab9fc9 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...336e9cb24c10e1 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...ce459b892cfead (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...e2f61e89fd99bb (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...54faab2dfc6754 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...f632b615a2fca7 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...f706fa3db9d5a5 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...67f2abb9b6eb86 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...3c087cff4f8131 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...6894105ecf375b (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...e383bdab39880f (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...9c3d0c02413574 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...531ba4fc21bc8a (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...4b52ea67d26faa (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...1d439a2455daa3 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...efa26720eb8a61 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...fc370ae5e5c2f7 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...517726118d197a (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...1aa1e7e7722cdd (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...953e3fbdb76a30 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...4445bd9bcf488d (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...7a29fba9e22dd2 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...e65c88c937803b (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...d7e422fa705a97 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...8f49d2fb561751 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...9f44a2847e266c (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...8185558a31bcd3 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...bd752b4fef6c8b (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.2...256d74517a38b4 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.2...401df29bc709c7 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...f2c55005c689e6 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...3423cfd3d8bb0c (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...8440f267de4895 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...0e8a07251a0ab6 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...fc66dd500578dd (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...300d99b63481af (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...feb86fc88256e4 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...b79bd3c9d815ec (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping https://pypi.python.org/packages/3.3...2f29bcfa172834 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/3.3...9e60021331c23c (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping link https://pypi.python.org/packages/3.3...cb91c7f92db67e (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...89def7d6920518 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...26a234d5c867e2 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...cb0ee2381f6e89 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...ce51d47ff7e56a (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...ec085e5874f285 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...46ad904f919eb9 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...8d32a0acb82e6a (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...9d5095a74a67f4 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...26cf9ce4ed066b (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...6fd14d4fdba007 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...83d2e0509ab1c1 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...e05a7b3a7d499c (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...6f0d78e5782699 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...fe971856f5cd12 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...8e61894eb16192 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...978cfb9d8708ba (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...6c81124e0c40d3 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...693aecf93a236c (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...017401beab3695 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...0eff06b23613da (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...8d4309a87ef73d (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping https://pypi.python.org/packages/3.3...6e8194bb12ee54 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping link https://pypi.python.org/packages/3.3...6763dcfc0200b9 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...59fc58848dab35 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...6a23afb12fff71 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...63eee5c82b91b0 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping https://pypi.python.org/packages/3.3...c25cf8c4a5d19e (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping link https://pypi.python.org/packages/3.3...4a1c2be2ea6a5d (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...4aabc9b46ab3fe (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...6b3f16eb5ec0d5 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...e9a6b83710eb39 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping https://pypi.python.org/packages/3.3...8e07b966f6caed (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping link https://pypi.python.org/packages/3.3...ff572c4afd6fb6 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...345cdd870acdfc (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...aefdfa34a8bcd9 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...4030fd54849d12 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...7445c6db2870a4 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...a9e10ae1299afc (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...800fb0196add65 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...bec1f1a9f9dba6 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...df029935955891 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...4978cccbf2d4fc (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...cc7333377a5f28 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...34fe68ce104236 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...fb8e34dafdd30a (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...c871da26029974 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...d73ad109b59e3e (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...b332107008170a (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...7e4de92a4c8473 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...889751bf4d5d7b (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...b24b1bea9310d1 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...0d2f03b111e330 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...329a1792760fae (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...54686d56d7d14c (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...a3c293be40c3cd (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...eae525eaf67678 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...4f74b5139e711c (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...d1e0fcc7bf5909 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...e4ed1ffd9e1340 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...be333e3daac7ec (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...0d04f923cda347 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...c3d22baec0aca9 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...a69413640cc8ec (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...b3420c717d6e12 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...4983db021a0467 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...00126c94f8a1b1 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...1dd1efa08b86f6 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...3661e2b901db8c (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...19baa5fcc50acd (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...1b953f9794bc1f (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...788a95b708afb0 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...c9c707db6d2aa4 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...9c112b97f515ed (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...7d45136091decf (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...dde8c3a1d3cb4f (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...03bd35e2ab618d (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...42265f3f5fccf0 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...5d6dfb9622d617 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.3...d4cadf255da238 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.3...a558e2928bc06d (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...2807169b6012a0 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...5cc781079011e0 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...0d9d87c1b5b962 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...0fa4b2deb8385e (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...227fe9c0c8a5fa (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...4db67dc6245988 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...4b61d46b723069 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...473f96a4c183c1 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...1d8442832aecdd (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...a429225c845b8e (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...dd2d10b8d48a1d (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...cba1be10818230 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...02d984cf15bee4 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...878b210eb68894 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping https://pypi.python.org/packages/3.4...03ba8e0aa7abbe (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping link https://pypi.python.org/packages/3.4...716dcfe2f68cfe (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...038eed31e8fa77 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...581d623229ab01 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...70e19b32e6432d (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping https://pypi.python.org/packages/3.4...41d0d2a9c14951 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping link https://pypi.python.org/packages/3.4...3fc15a9e4b031f (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...50d6a42c98a119 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...c12759a0c932af (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...1e89ec230116d6 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping https://pypi.python.org/packages/3.4...f993ca41f3c2af (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping link https://pypi.python.org/packages/3.4...3cdf8fd3ae2bed (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...3cb601753323f7 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...7c53c15578424f (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...14b7eec103681b (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...aeb8ef44c6b2b5 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...f56137ca07bad4 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...b01ebf80735228 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...2732eda5f5e82a (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...ac369d156c41d9 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...743bea92173fae (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...37442f13226015 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...2d093f8f3a8de5 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...8b88f5774a7c91 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...2c60ec5d7feea7 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...ac37888f430f6f (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...f2bf4cd9f7b4a3 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...1883f0d0908629 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...69ce92b41a9683 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...ffa987ad8f341f (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...02325df2630b8d (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...5a5a439800b245 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...3f89750933409e (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...8ef523c95736c9 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...2f8f8838ceac18 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...66acc1e6bd9b10 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...43f99096faa47f (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...0b185a4e4a84cd (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...457d25f77b5072 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...d33afb478d3c6a (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...2d1777732e0f4c (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...6acd51a4e2e380 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...441737841f9e53 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...bd5f1860c396d6 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...51516feba9ca35 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...3eae0d5a62b0fc (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...26a364c1ef5e38 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...7e70932ee61886 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...b072b00a2f69df (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...91b40213b217b8 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...7962e3a2e67b1d (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...301b0f6b79a824 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...a3fee58db4ff30 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...081ac8c708556d (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...d5f5fe7567a020 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...eff5b8ebb8c6b7 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...fe8fb28cae0296 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.4...1c4ccd96b292c6 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.4...322d339a11abfe (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.5...21405ad080485f (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.5...1a71643734bf09 (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.5...f83f40c7587a84 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.5...c29bc01b032cf0 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.5...2a01f726976dbd (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.5...5c6bf8fa965c3b (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.5...11ce247f58e595 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.5...5e422caca1bc67 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.5...33f142998832bf (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.5...8cdc7ceb12f9de (from https://pypi.python.org/simple/pillow/); unknown archive format: .egg
Skipping link https://pypi.python.org/packages/3.5...c296200cfb9a16 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping link https://pypi.python.org/packages/3.5...bed147e91567a8 (from https://pypi.python.org/simple/pillow/); unknown archive format: .exe
Skipping https://pypi.python.org/packages/cp2...9b7ac1aa85fe89 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...f1158a9427ff6c (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...f7057b1d0738f2 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...d764794106a4ae (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...bc2d56000d6cfe (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...20f0cd7d70024e (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...73721798320570 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...1189b381839ce2 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...552969f277554c (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...e24d12c895f726 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...5f2c0247269c73 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...d810822e5d9004 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...96b626b800b410 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...c8b716a35b5f72 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...d90128e22b731b (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...de0bc2adbed30f (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...60a0b96c40627d (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...69afadbbb67eab (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...81e2d4f2427758 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...e391e035fc104f (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...a5b4f27d948ee8 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...72dc9235897b14 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...746684c4f535a0 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...941066cde1aba1 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...002f793ac6d83f (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...3272a481abd07c (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...0149f8ed7814d9 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...54640ff94ec025 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...58bd4fb82569da (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...fea22ab8256dc6 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...d1208c1044937a (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...ed821470c8dba6 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...f2c416182b9327 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...1a69b3d9519eee (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...c7ac0e4d37d251 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...1e9920c7b575fb (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...d610aa13d1dd44 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...0f8150f41c8ac1 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...a308862e6f4bc3 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...9df761184169c6 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...6d068fcc4e83f3 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...9154f21f2d9048 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...d75946f389b13f (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...3b6f1bea11accd (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...73899d33df8e59 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...d500704c777fda (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...e717a341f524d0 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...584ad8fb746312 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...26ef233629de27 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...fe8ebcfb463d86 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...a24b0e578335a9 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...79ad031e026aed (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...ad7e78fcd53d60 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...daafe9be34ffee (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...10db88d289305a (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...2961ee5015f5a1 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...713689dea67f16 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...783f328fffaa5f (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...3554c76e1f85f2 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...4b85c6964aa56f (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...27db9a18ca116e (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...702e3ab826941b (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...a9d7350fc813da (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...6c69ef4a3f9119 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...4206323a8d557a (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...d885576fc0acda (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...4726c6b755aa18 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...7b344d5dbc57fd (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...edcc5f72bc1e66 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...5ad14081212f6f (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...f638c03b9fb808 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...bb51d8b4bdfb76 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...33d1cba0826ac4 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...66197759e09a59 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...ebaa011a6be2c6 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...4fe192415ecff0 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...589fb55ecddc2a (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...5e9ed8c6a06d28 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...b76bbb4f13c2dd (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...a7c8869377636e (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...85be137520c39d (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...cb110d140e8e77 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...e0aab9411bf0bf (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...2c1410a2b46dd8 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...7140e4aaa231cd (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...d8e7d472b2e5fb (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...a17827b4fdfdd3 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...2c0a45976897d8 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp2...e425f73bd506f8 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...a2ef6ed64f862a (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...9c6ccaf77ababf (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...08976fa8fa90b3 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...71ebabfe342b5a (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...86c00a3c7ac5d5 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...9a4335a8cb4b4f (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...bf08901861031f (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...7cbd381c59de6e (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...76a8ef3d08aad6 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...d765665e53dd98 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...c4b84fa690c955 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...16ec2d8330d633 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...f3f78a4ca86795 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...e0a98e86553b24 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...d46e4a0915dd2f (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...523e33d7daec59 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...3e2cfb1661a3da (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...b0ba7c52609407 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...338bb68336a7e8 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...e953f3a77dd954 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...449c4b5a7a86d3 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...aa7f9532778760 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...3040128d893be1 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...54567766c09dc1 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...9fa1257558ad9f (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...53de83d11a0ad0 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...c6417138a2bf95 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...b94031bdc17e5d (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...44cd9de8d32b99 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...6caf39557d4bff (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...57c483ed922b5a (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...4f26823e13b6ad (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...d1415a9227b266 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...ecb45b777df730 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...fd4c8fbc1ffbd7 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...676ead6b141940 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...c32e4b0ab7ace0 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...0cbd762c27dcd4 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...8f82e166ec8ed3 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...8484d02aae5520 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...4b56221457d1c1 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...d04082d05381d5 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...9b49e7d6a59f1f (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...add6a0655beee5 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...3c5f5594bb74e6 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...841727de4e9fc1 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...9966977c99b77a (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...605918c0ea70ee (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...8f06eee0501eb0 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...c74859a971a60e (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...01d7c4c13cdf53 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...873fe84e83adf0 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...95835a7b075f6d (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...2afb5097a009aa (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...383344f735b2cb (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...14fb8ac8c45db1 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...867a56493d41d1 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...ad285dfbf7a740 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...124c74498fbdd8 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...85481a77ecb07b (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...5201c38237a8a1 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...eb01d77f23ae4d (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...f47ca70588f461 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...13babe5ae1101c (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...0f9943604625de (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...e3bf767c8183d8 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...bf760f83c49fd9 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...5be79754062953 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...21f6c793eee5ed (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...3291d27d704e75 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...dbab9fadf69633 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...78f043820482df (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...7352090fdc9fd2 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...fa351c21564f22 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...e2b5127c9d7058 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...a24c4c71358792 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...ad2b7b7d0cf1fe (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...5b949801ee2c5b (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...6e5b03bc6a4a9e (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...7eae2e3bd1d181 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...46d39d12aee0a3 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...c650e2c465c289 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...a5d858bd9e59a8 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...ab4dbc4801f22f (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...b4641e116d3698 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...78332366c10555 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...f771d7bb5f37a8 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...3ee883fe2a52ca (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...dfd562e3dc6fdf (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...75e2581bef53e3 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...99194837cefa2b (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...5d468eed11b07e (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...bdc1d5424a382b (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...d30f9d507d3a92 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...917bcfc6ec46ff (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...251e412538c457 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...7900226d72ee57 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...2f9f7acf849a12 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...de81845d05b42a (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...e6261de41b789c (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...bccc9235f7bdba (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...99ca0b35aa3e9b (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...cddf411d6aaed2 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...588b15140e32fd (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...b7eb86c4f467a1 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...e73c70371e52b0 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...3af4679065bebc (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...d0649c50cfd45d (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...c377aa81ef9391 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...50fe6226435a4d (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...b03ed3333f9652 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...11048b1b9f55d4 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...fbd28a937d8aee (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...045311e4ff4b0b (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...61fdc85ba19874 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...4853931d65b422 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...5802b49d370813 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...053c5d74f0d6e6 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...bd22228aebb94d (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...e5930701dd7da5 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...59f5c49aac2408 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...c84385aa69defd (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...4845be88f974ee (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...8c29e48f54ed5b (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...638407da609fce (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...d869da6678042a (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...cec00442482a31 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...d359ee779135fc (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...4d36b0d9743e58 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...9413bfc8a647d0 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...45246501843bc9 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...1983bc820ff4b4 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...8cae1aba09ad34 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...dc44afa3b17aad (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...14f57a4b911bc7 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...97534f80a15414 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...786dfc1c562171 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...2644b15abbbc64 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...45c802787114d7 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...0d0b4cc3c892a6 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...77c03d34ec2b98 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...c27fc8ba2d3dc8 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...4ced350c953548 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...884e793691bbf4 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...0996287df08586 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...b8235ab2372130 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...899c74e5704e94 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...0688e1b556a19e (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...03e896ca71370f (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...3b50a15d3cc7b4 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...3ce4e9fcc4d1bc (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...3a53bf18531372 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...83d19ce1f359b3 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...421d46138d2d50 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...fadd364b902ccf (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...a504745bd85a24 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...7dfd0802a8fb01 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...8bac950a3c3e87 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...000b171e10e53c (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...ce3484084ebffa (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...2d12a0d6bd9d01 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...b241fab5d5f4a0 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...7131d86d823376 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...e08fbd576caca5 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Skipping https://pypi.python.org/packages/cp3...00c185397db204 (from https://pypi.python.org/simple/pillow/) because it is not compatible with this Python
Found link https://pypi.python.org/packages/sou...a4ad8bb88b9606 (from https://pypi.python.org/simple/pillow/), version: 1.0
Found link https://pypi.python.org/packages/sou...d49bcabf80dd97 (from https://pypi.python.org/simple/pillow/), version: 1.1
Found link https://pypi.python.org/packages/sou...f85bbe8737f4d3 (from https://pypi.python.org/simple/pillow/), version: 1.2
Found link https://pypi.python.org/packages/sou...0b197f265b5131 (from https://pypi.python.org/simple/pillow/), version: 1.3
Found link https://pypi.python.org/packages/sou...73f95144585c40 (from https://pypi.python.org/simple/pillow/), version: 1.4
Found link https://pypi.python.org/packages/sou...68dc53696ddb2c (from https://pypi.python.org/simple/pillow/), version: 1.5
Found link https://pypi.python.org/packages/sou...7cf0302cdbf6f0 (from https://pypi.python.org/simple/pillow/), version: 1.6
Found link https://pypi.python.org/packages/sou...642d448ef644fa (from https://pypi.python.org/simple/pillow/), version: 1.7.0
Found link https://pypi.python.org/packages/sou...503f3f65584426 (from https://pypi.python.org/simple/pillow/), version: 1.7.1
Found link https://pypi.python.org/packages/sou...c4bbe67d09de25 (from https://pypi.python.org/simple/pillow/), version: 1.7.2
Found link https://pypi.python.org/packages/sou...7dc037efad9eb9 (from https://pypi.python.org/simple/pillow/), version: 1.7.3
Found link https://pypi.python.org/packages/sou...17f04e7a2b7cb0 (from https://pypi.python.org/simple/pillow/), version: 1.7.4
Found link https://pypi.python.org/packages/sou...b8d19e693ad4f9 (from https://pypi.python.org/simple/pillow/), version: 1.7.5
Found link https://pypi.python.org/packages/sou...98f0863fe765ce (from https://pypi.python.org/simple/pillow/), version: 1.7.6
Found link https://pypi.python.org/packages/sou...8a1d48183097a4 (from https://pypi.python.org/simple/pillow/), version: 1.7.6
Found link https://pypi.python.org/packages/sou...8906a3c394c687 (from https://pypi.python.org/simple/pillow/), version: 1.7.7
Found link https://pypi.python.org/packages/sou...9a6dc63b5289d6 (from https://pypi.python.org/simple/pillow/), version: 1.7.8
Found link https://pypi.python.org/packages/sou...afaf7c569ff39f (from https://pypi.python.org/simple/pillow/), version: 2.0.0
Found link https://pypi.python.org/packages/sou...e7b7efdeac8200 (from https://pypi.python.org/simple/pillow/), version: 2.1.0
Found link https://pypi.python.org/packages/sou...adc90b4b374af8 (from https://pypi.python.org/simple/pillow/), version: 2.2.0
Found link https://pypi.python.org/packages/sou...a0951ff061e6bf (from https://pypi.python.org/simple/pillow/), version: 2.2.1
Found link https://pypi.python.org/packages/sou...2e9327bf0608b4 (from https://pypi.python.org/simple/pillow/), version: 2.2.2
Found link https://pypi.python.org/packages/sou...5983c4914daea7 (from https://pypi.python.org/simple/pillow/), version: 2.3.0
Found link https://pypi.python.org/packages/sou...b45cc64588fe94 (from https://pypi.python.org/simple/pillow/), version: 2.3.1
Found link https://pypi.python.org/packages/sou...2a4cd95d8d9d75 (from https://pypi.python.org/simple/pillow/), version: 2.3.2
Found link https://pypi.python.org/packages/sou...fe518bc765e43c (from https://pypi.python.org/simple/pillow/), version: 2.4.0
Found link https://pypi.python.org/packages/sou...724ba7a15fe617 (from https://pypi.python.org/simple/pillow/), version: 2.5.0
Found link https://pypi.python.org/packages/sou...2c8ef816fca0d9 (from https://pypi.python.org/simple/pillow/), version: 2.5.1
Found link https://pypi.python.org/packages/sou...70a3f64c9fd122 (from https://pypi.python.org/simple/pillow/), version: 2.5.2
Found link https://pypi.python.org/packages/sou...04b93d0be2c2d7 (from https://pypi.python.org/simple/pillow/), version: 2.5.3
Found link https://pypi.python.org/packages/sou...b7790e1efabf23 (from https://pypi.python.org/simple/pillow/), version: 2.6.0
Found link https://pypi.python.org/packages/sou...ba0c8a97c259e8 (from https://pypi.python.org/simple/pillow/), version: 2.6.0
Found link https://pypi.python.org/packages/sou...90c6eea960e091 (from https://pypi.python.org/simple/pillow/), version: 2.6.1
Found link https://pypi.python.org/packages/sou...bf045b404cbdeb (from https://pypi.python.org/simple/pillow/), version: 2.6.1
Found link https://pypi.python.org/packages/sou...72d601b66b9466 (from https://pypi.python.org/simple/pillow/), version: 2.6.2
Found link https://pypi.python.org/packages/sou...714e4a96bba49c (from https://pypi.python.org/simple/pillow/), version: 2.6.2
Found link https://pypi.python.org/packages/sou...8158b424655d10 (from https://pypi.python.org/simple/pillow/), version: 2.7.0
Found link https://pypi.python.org/packages/sou...224300c2931a1a (from https://pypi.python.org/simple/pillow/), version: 2.7.0
Found link https://pypi.python.org/packages/sou...9e578c8bd18566 (from https://pypi.python.org/simple/pillow/), version: 2.8.0
Found link https://pypi.python.org/packages/sou...316f288dc3eb92 (from https://pypi.python.org/simple/pillow/), version: 2.8.0
Found link https://pypi.python.org/packages/sou...241772ae30c4b7 (from https://pypi.python.org/simple/pillow/), version: 2.8.1
Found link https://pypi.python.org/packages/sou...6463120a0c2e18 (from https://pypi.python.org/simple/pillow/), version: 2.8.1
Found link https://pypi.python.org/packages/sou...9ba18f47e118e5 (from https://pypi.python.org/simple/pillow/), version: 2.8.2
Found link https://pypi.python.org/packages/sou...e881f0faffd89b (from https://pypi.python.org/simple/pillow/), version: 2.8.2
Found link https://pypi.python.org/packages/sou...ec543ad5b37d14 (from https://pypi.python.org/simple/pillow/), version: 2.9.0
Found link https://pypi.python.org/packages/sou...4c011c3ce05bc4 (from https://pypi.python.org/simple/pillow/), version: 2.9.0
Found link https://pypi.python.org/packages/sou...ac7e30c9b7377d (from https://pypi.python.org/simple/pillow/), version: 3.0.0
Found link https://pypi.python.org/packages/sou...2f0f1d936339c3 (from https://pypi.python.org/simple/pillow/), version: 3.0.0
Found link https://pypi.python.org/packages/sou...13939595ad1e7c (from https://pypi.python.org/simple/pillow/), version: 3.1.0-rc1
Found link https://pypi.python.org/packages/sou...aeb5c543829f18 (from https://pypi.python.org/simple/pillow/), version: 3.1.0.rc1
Found link https://pypi.python.org/packages/sou...0decb961fa753a (from https://pypi.python.org/simple/pillow/), version: 3.1.0
Found link https://pypi.python.org/packages/sou...62e221a345ef4b (from https://pypi.python.org/simple/pillow/), version: 3.1.0
Found link https://pypi.python.org/packages/sou...84bd00dad43bb8 (from https://pypi.python.org/simple/pillow/), version: 3.1.1
Found link https://pypi.python.org/packages/sou...fbcb32f62940ae (from https://pypi.python.org/simple/pillow/), version: 3.1.1
Ignoring link https://pypi.python.org/packages/sou...13939595ad1e7c (from https://pypi.python.org/simple/pillow/), version 3.1.0-rc1 is a pre-release (use --pre to allow).
Ignoring link https://pypi.python.org/packages/sou...aeb5c543829f18 (from https://pypi.python.org/simple/pillow/), version 3.1.0.rc1 is a pre-release (use --pre to allow).
Using version 3.1.1 (newest of versions: 3.1.1, 3.1.1, 3.1.0, 3.1.0, 3.0.0, 3.0.0, 2.9.0, 2.9.0, 2.8.2, 2.8.2, 2.8.1, 2.8.1, 2.8.0, 2.8.0, 2.7.0, 2.7.0, 2.6.2, 2.6.2, 2.6.1, 2.6.1, 2.6.0, 2.6.0, 2.5.3, 2.5.2, 2.5.1, 2.5.0, 2.4.0, 2.3.2, 2.3.1, 2.3.0, 2.2.2, 2.2.1, 2.2.0, 2.1.0, 2.0.0, 1.7.8, 1.7.7, 1.7.6, 1.7.6, 1.7.5, 1.7.4, 1.7.3, 1.7.2, 1.7.1, 1.7.0, 1.6, 1.5, 1.4, 1.3, 1.2, 1.1, 1.0)
Downloading from URL https://pypi.python.org/packages/sou...84bd00dad43bb8 (from https://pypi.python.org/simple/pillow/)
Running setup.py (path:/tmp/pip_build_root/Pillow/setup.py) egg_info for package Pillow
running egg_info
creating pip-egg-info/Pillow.egg-info
writing dependency_links to pip-egg-info/Pillow.egg-info/dependency_links.txt
writing top-level names to pip-egg-info/Pillow.egg-info/top_level.txt
writing pip-egg-info/Pillow.egg-info/PKG-INFO
writing manifest file 'pip-egg-info/Pillow.egg-info/SOURCES.txt'
warning: manifest_maker: standard file '-c' not found

reading manifest file 'pip-egg-info/Pillow.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no previously-included files found matching '.editorconfig'
writing manifest file 'pip-egg-info/Pillow.egg-info/SOURCES.txt'
Source in /tmp/pip_build_root/Pillow has version 3.1.1, which satisfies requirement Pillow
Installing collected packages: Pillow
Running setup.py install for Pillow
Running command /usr/bin/python3 -c "import setuptools, tokenize;__file__='/tmp/pip_build_root/Pillow/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-oozytx9k-record/install-record.txt --single-version-externally-managed --compile
running install
running build
running build_py
creating build
creating build/lib.linux-x86_64-3.4
creating build/lib.linux-x86_64-3.4/PIL
copying PIL/BufrStubImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/TiffImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/PyAccess.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImageMode.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/BmpImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/features.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/MspImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/JpegImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/IcoImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ContainerIO.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/CurImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/XVThumbImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImageFont.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/GribStubImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/IptcImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImageSequence.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/GifImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/OleFileIO.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/_binary.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/MpegImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/DcxImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImageChops.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImageWin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImageMorph.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/FitsStubImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImageTransform.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImageMath.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImageQt.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/WebPImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImageFile.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/TgaImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/PcfFontFile.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/GbrImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/MicImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/FpxImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/GdImageFile.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/TarIO.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/XbmImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImageStat.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/BdfFontFile.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/Jpeg2KImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImagePalette.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/PaletteFile.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/SpiderImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/_util.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/GimpPaletteFile.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/__init__.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImtImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/GimpGradientFile.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/McIdasImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/Hdf5StubImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImageTk.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/PalmImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImageOps.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/JpegPresets.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/WalImageFile.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImagePath.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ExifTags.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImageDraw.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImageFilter.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/PixarImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/IcnsImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/PcdImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/Image.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/WmfImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/FliImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/EpsImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/PsdImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/TiffTags.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImageCms.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImageDraw2.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/SunImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/MpoImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/FontFile.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/PdfImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImageColor.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImageEnhance.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/XpmImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/PngImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/PpmImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImageGrab.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/PcxImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/SgiImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/PSDraw.py -> build/lib.linux-x86_64-3.4/PIL
copying PIL/ImageShow.py -> build/lib.linux-x86_64-3.4/PIL
running egg_info
writing top-level names to Pillow.egg-info/top_level.txt
writing dependency_links to Pillow.egg-info/dependency_links.txt
writing Pillow.egg-info/PKG-INFO
warning: manifest_maker: standard file '-c' not found

reading manifest file 'Pillow.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no previously-included files found matching '.editorconfig'
writing manifest file 'Pillow.egg-info/SOURCES.txt'
copying PIL/OleFileIO-README.md -> build/lib.linux-x86_64-3.4/PIL
running build_ext
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/tmp/pip_build_root/Pillow/setup.py", line 767, in <module>
zip_safe=not debug_build(),
File "/usr/lib/python3.4/distutils/core.py", line 148, in setup
dist.run_commands()
File "/usr/lib/python3.4/distutils/dist.py", line 955, in run_commands
self.run_command(cmd)
File "/usr/lib/python3.4/distutils/dist.py", line 974, in run_command
cmd_obj.run()
File "/usr/lib/python3/dist-packages/setuptools/command/install.py", line 53, in run
return _install.run(self)
File "/usr/lib/python3.4/distutils/command/install.py", line 583, in run
self.run_command('build')
File "/usr/lib/python3.4/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/usr/lib/python3.4/distutils/dist.py", line 974, in run_command
cmd_obj.run()
File "/usr/lib/python3.4/distutils/command/build.py", line 126, in run
self.run_command(cmd_name)
File "/usr/lib/python3.4/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/usr/lib/python3.4/distutils/dist.py", line 974, in run_command
cmd_obj.run()
File "/usr/lib/python3.4/distutils/command/build_ext.py", line 339, in run
self.build_extensions()
File "/tmp/pip_build_root/Pillow/setup.py", line 516, in build_extensions
(f, f))
ValueError: jpeg is required unless explicitly disabled using --disable-jpeg, aborting
Complete output from command /usr/bin/python3 -c "import setuptools, tokenize;__file__='/tmp/pip_build_root/Pillow/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-oozytx9k-record/install-record.txt --single-version-externally-managed --compile:
running install

running build

running build_py

creating build

creating build/lib.linux-x86_64-3.4

creating build/lib.linux-x86_64-3.4/PIL

copying PIL/BufrStubImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/TiffImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/PyAccess.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImageMode.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/BmpImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/features.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/MspImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/JpegImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/IcoImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ContainerIO.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/CurImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/XVThumbImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImageFont.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/GribStubImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/IptcImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImageSequence.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/GifImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/OleFileIO.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/_binary.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/MpegImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/DcxImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImageChops.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImageWin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImageMorph.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/FitsStubImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImageTransform.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImageMath.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImageQt.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/WebPImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImageFile.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/TgaImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/PcfFontFile.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/GbrImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/MicImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/FpxImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/GdImageFile.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/TarIO.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/XbmImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImageStat.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/BdfFontFile.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/Jpeg2KImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImagePalette.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/PaletteFile.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/SpiderImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/_util.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/GimpPaletteFile.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/__init__.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImtImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/GimpGradientFile.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/McIdasImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/Hdf5StubImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImageTk.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/PalmImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImageOps.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/JpegPresets.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/WalImageFile.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImagePath.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ExifTags.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImageDraw.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImageFilter.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/PixarImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/IcnsImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/PcdImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/Image.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/WmfImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/FliImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/EpsImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/PsdImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/TiffTags.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImageCms.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImageDraw2.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/SunImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/MpoImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/FontFile.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/PdfImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImageColor.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImageEnhance.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/XpmImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/PngImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/PpmImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImageGrab.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/PcxImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/SgiImagePlugin.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/PSDraw.py -> build/lib.linux-x86_64-3.4/PIL

copying PIL/ImageShow.py -> build/lib.linux-x86_64-3.4/PIL

running egg_info

writing top-level names to Pillow.egg-info/top_level.txt

writing dependency_links to Pillow.egg-info/dependency_links.txt

writing Pillow.egg-info/PKG-INFO

warning: manifest_maker: standard file '-c' not found



reading manifest file 'Pillow.egg-info/SOURCES.txt'

reading manifest template 'MANIFEST.in'

warning: no previously-included files found matching '.editorconfig'

writing manifest file 'Pillow.egg-info/SOURCES.txt'

copying PIL/OleFileIO-README.md -> build/lib.linux-x86_64-3.4/PIL

running build_ext

Traceback (most recent call last):

File "<string>", line 1, in <module>

File "/tmp/pip_build_root/Pillow/setup.py", line 767, in <module>

zip_safe=not debug_build(),

File "/usr/lib/python3.4/distutils/core.py", line 148, in setup

dist.run_commands()

File "/usr/lib/python3.4/distutils/dist.py", line 955, in run_commands

self.run_command(cmd)

File "/usr/lib/python3.4/distutils/dist.py", line 974, in run_command

cmd_obj.run()

File "/usr/lib/python3/dist-packages/setuptools/command/install.py", line 53, in run

return _install.run(self)

File "/usr/lib/python3.4/distutils/command/install.py", line 583, in run

self.run_command('build')

File "/usr/lib/python3.4/distutils/cmd.py", line 313, in run_command

self.distribution.run_command(command)

File "/usr/lib/python3.4/distutils/dist.py", line 974, in run_command

cmd_obj.run()

File "/usr/lib/python3.4/distutils/command/build.py", line 126, in run

self.run_command(cmd_name)

File "/usr/lib/python3.4/distutils/cmd.py", line 313, in run_command

self.distribution.run_command(command)

File "/usr/lib/python3.4/distutils/dist.py", line 974, in run_command

cmd_obj.run()

File "/usr/lib/python3.4/distutils/command/build_ext.py", line 339, in run

self.build_extensions()

File "/tmp/pip_build_root/Pillow/setup.py", line 516, in build_extensions

(f, f))

ValueError: jpeg is required unless explicitly disabled using --disable-jpeg, aborting

----------------------------------------
Cleaning up...
Removing temporary dir /tmp/pip_build_root...
Command /usr/bin/python3 -c "import setuptools, tokenize;__file__='/tmp/pip_build_root/Pillow/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-oozytx9k-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /tmp/pip_build_root/Pillow
Exception information:
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/pip/basecommand.py", line 122, in main
status = self.run(options, args)
File "/usr/lib/python3/dist-packages/pip/commands/install.py", line 283, in run
requirement_set.install(install_options, global_options, root=options.root_path)
File "/usr/lib/python3/dist-packages/pip/req.py", line 1436, in install
requirement.install(install_options, global_options, *args, **kwargs)
File "/usr/lib/python3/dist-packages/pip/req.py", line 707, in install
cwd=self.source_dir, filter_stdout=self._filter_install, show_stdout=False)
File "/usr/lib/python3/dist-packages/pip/util.py", line 715, in call_subprocess
% (command_desc, proc.returncode, cwd))
pip.exceptions.InstallationError: Command /usr/bin/python3 -c "import setuptools, tokenize;__file__='/tmp/pip_build_root/Pillow/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-oozytx9k-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /tmp/pip_build_root/Pillow


When I tried to install the test plugin using your link Sigil tells me “Error: Plugin not a valid Sigil plugin.” The version in the source zip installs OK and reports that everything is fine except, of course, “Python Package: PIL Missing”.
seanos is offline   Reply With Quote
Advert
Old 03-12-2016, 03:01 AM   #6
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,584
Karma: 22735033
Join Date: Dec 2010
Device: Kindle PW2
Quote:
Originally Posted by seanos View Post
No problem with cssselect, but I get errors with Pillow.
Code:
ValueError: jpeg is required unless explicitly disabled using --disable-jpeg
That's a known issue. Pillow requires libjpeg and zlib.

Look for the following packages (or similarly named ones) in Synaptic:

Code:
libjpeg8-dev 
zlib1g-dev
Doitsu is offline   Reply With Quote
Old 03-12-2016, 03:05 AM   #7
seanos
Zealot
seanos began at the beginning.
 
seanos's Avatar
 
Posts: 101
Karma: 12
Join Date: Apr 2010
Location: Melbourne, Australia
Device: Kobo Sage, Kobo Aura H2O, LG V20
Thank you - installed.
seanos is offline   Reply With Quote
Old 03-12-2016, 03:35 AM   #8
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 27,552
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
I DO need to add a note for the libjpeg and zlib pre-reqs for Pillow. That's come up a few times now.
DiapDealer is offline   Reply With Quote
Old 03-12-2016, 02:35 PM   #9
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 27,552
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Quote:
Originally Posted by seanos View Post
When I tried to install the test plugin using your link Sigil tells me “Error: Plugin not a valid Sigil plugin.”
I missed this. It seems that github is not very good at allowing single files from an repository to be downloaded. Right-clicking on the plugin file and using you browser's "Save as" feature will result in an invalid zipfile. Left-clicking the file and then clicking the "Raw" button will download the zip file correctly. I'll change the link if possible, or remove the link entirely and just replace it with instructions to retrieve it from the source archive.
DiapDealer is offline   Reply With Quote
Old 03-13-2016, 04:23 AM   #10
rkomar
Wizard
rkomar ought to be getting tired of karma fortunes by now.rkomar ought to be getting tired of karma fortunes by now.rkomar ought to be getting tired of karma fortunes by now.rkomar ought to be getting tired of karma fortunes by now.rkomar ought to be getting tired of karma fortunes by now.rkomar ought to be getting tired of karma fortunes by now.rkomar ought to be getting tired of karma fortunes by now.rkomar ought to be getting tired of karma fortunes by now.rkomar ought to be getting tired of karma fortunes by now.rkomar ought to be getting tired of karma fortunes by now.rkomar ought to be getting tired of karma fortunes by now.
 
Posts: 2,986
Karma: 18343081
Join Date: Oct 2010
Location: Sudbury, ON, Canada
Device: PRS-505, PB 902, PRS-T1, PB 623, PB 840, PB 633
Quote:
Originally Posted by seanos View Post
I must admit one of my biggest bugbears is the western world’s obsession with binary oppositions and I find the two opposing views of what Linux (perhaps especially Ubuntu) and Linux users should be, rather annoying. Every time I’ve tried to learn things about Python I’ve been put off by the complexity of different versions, the attachment to byte=char and the geek attitude that you can only usefully swallow the knowledge whole. There is no middle ground. It’s all a little like joining a cult.
I'm intrigued by "the attachment to byte=char". What do you mean by this, and why does it put you off?
rkomar is offline   Reply With Quote
Old 03-15-2016, 03:29 PM   #11
eschwartz
Ex-Helpdesk Junkie
eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.
 
eschwartz's Avatar
 
Posts: 19,422
Karma: 85397180
Join Date: Nov 2012
Location: The Beaten Path, USA, Roundworld, This Side of Infinity
Device: Kindle Touch fw5.3.7 (Wifi only)
Quote:
Originally Posted by seanos View Post
I don’t consider building from source itself to be particularly difficult. A bit tedious, yes. It’s providing useful, coherent instructions that’s the hard part and I think you did that very well for the most part.
As a general rule of thumb, the dedicated nerds have already done the job of packaging most useful software.

People who want to build from source anyway, should have a basic knowledge of the pitfalls and be able to figure out how to resolve likely errors. For instance, matching python modules to pip/apt.

As you say, useful instructions are difficult. The best way is by example -- for instance, maintaining a packaging script (or just looking at the one the various distros have used to package the software).

Granted, I have never been able to figure out how debian's build system works but I have always found Arch Linux quite simple and easy to understand in that respect. (In fact, I maintain the Arch User Repository package for sigil-git).

Debian also has that terrible habit of splitting development headers from packages, making it much harder to resolve build dependencies. For instance, your issue with building Pillow is because of split development and end-user packages.

IMHO Debian is not the best distro for building things from source.
eschwartz is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Ubuntu UbuTab Android/Ubuntu OS device gbm Android Devices 1 01-21-2015 02:23 PM
Problem building Calibre from source on Ubuntu 10.10 rozen Calibre 1 03-28-2011 02:02 AM
Error Building on Ubuntu from latest Bazaar Source RoninTech Calibre 5 04-09-2010 10:01 PM
Problem building openinkpot on Ubuntu 9.04 nseger OpenInkpot 3 08-23-2009 04:51 AM
Issues building Madshelf on Ubuntu migge OpenInkpot 1 08-22-2009 07:59 PM


All times are GMT -4. The time now is 01:03 PM.


MobileRead.com is a privately owned, operated and funded community.