Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pip 20.3.2 eagerly downloads all versions of a package during dependency resolution #9284

Closed
gGonz opened this issue Dec 15, 2020 · 51 comments
Closed

Comments

@gGonz
Copy link

gGonz commented Dec 15, 2020

Environment

  • pip version: 20.3.2
  • Python version: 3.7.2
  • OS: Linux

Description
If you use pip to update requirements after installing 20.3.2 it goes into an infinite loop resolving and downloading previous versions of dependencies.

This happened on our CI environment that took 26 minutes to complete a job that takes no longer than 3, but then we were able to replicate it locally by just telling pip to update himself...

Expected behavior

Dependencies should be resolved without seeking all versions of a package.

How to Reproduce

  1. pip install -U pip to get to 20.3.2
  2. pip install -U pip again

Output

Paste the output of the steps above, including the commands themselves and
pip's output/traceback etc.

First, update pip

$ pip install -U pip
Collecting pip                                                                                            
  Downloading pip-20.3.2-py2.py3-none-any.whl (1.5 MB)
     |████████████████████████████████| 1.5 MB 1.2 MB/s 
Installing collected packages: pip
  Attempting uninstall: pip
    Found existing installation: pip 20.1
    Uninstalling pip-20.1:
      Successfully uninstalled pip-20.1
Successfully installed pip-20.3.2

Then update it again (I had to ctrl+C to stop the loop)

$ pip install -U pip
Requirement already satisfied: pip in /home/ggonz/.pyenv/versions/3.7.2/envs/pip-test/lib/python3.7/site-packages (20.3.2)
Collecting pip
  Using cached pip-20.3.2-py2.py3-none-any.whl (1.5 MB)
  Downloading pip-20.3.2.tar.gz (1.5 MB)
     |████████████████████████████████| 1.5 MB 829 kB/s 
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Downloading pip-20.3.1-py2.py3-none-any.whl (1.5 MB)
     |████████████████████████████████| 1.5 MB 835 kB/s 
  Downloading pip-20.3.1.tar.gz (1.5 MB)
     |████████████████████████████████| 1.5 MB 1.2 MB/s 
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Downloading pip-20.3-py2.py3-none-any.whl (1.5 MB)
     |████████████████████████████████| 1.5 MB 1.2 MB/s 
  Downloading pip-20.3.tar.gz (1.5 MB)
     |████████████████████████████████| 1.5 MB 718 kB/s 
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-20.2.4-py2.py3-none-any.whl (1.5 MB)
  Downloading pip-20.2.4.tar.gz (1.5 MB)
     |████████████████████████████████| 1.5 MB 1.4 MB/s 
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Downloading pip-20.2.3-py2.py3-none-any.whl (1.5 MB)
     |████████████████████████████████| 1.5 MB 1.3 MB/s 
  Downloading pip-20.2.3.tar.gz (1.5 MB)
     |████████████████████████████████| 1.5 MB 1.5 MB/s 
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Downloading pip-20.2.2-py2.py3-none-any.whl (1.5 MB)
     |████████████████████████████████| 1.5 MB 1.9 MB/s 
  Downloading pip-20.2.2.tar.gz (1.5 MB)
     |████████████████████████████████| 1.5 MB 2.0 MB/s 
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Downloading pip-20.2.1-py2.py3-none-any.whl (1.5 MB)
     |████████████████████████████████| 1.5 MB 160 kB/s 
  Downloading pip-20.2.1.tar.gz (1.5 MB)
     |████████████████████████████████| 1.5 MB 44 kB/s 
^C  Installing build dependencies ... canceled
ERROR: Operation cancelled by user
@omry
Copy link
Contributor

omry commented Dec 15, 2020

Probably related:
With 20.3.2, pip install setuptools --upgrade is iterating all versions and is taking long minutes to not do anything.
With 20.3.1 it finishes in a few seconds.

@ryboe
Copy link

ryboe commented Dec 15, 2020

@pradyunsg, @uranusjr, and @NoahGorny this is a really bad bug 😬

@shawnbrown
Copy link

shawnbrown commented Dec 15, 2020

I just ran into this myself when trying to upgrade my version of pandas (1.1.3) to the latest version (currently 1.1.5). And then saw that it did the same thing when trying to upgrade pip itself.

Out of morbid curiosity, I let the pandas upgrade run its course inside a fresh virtual environment. It took over 35 minutes and downloaded over 650 MB of old packages into the cache directory: https://pastebin.com/V6kg6tTX

Edit: Moved code to as per @omry.

@shawnbrown
Copy link

shawnbrown commented Dec 15, 2020

It should be noted, it's not an infinite loop...

Here's the full log of pip 20.3.2 trying to upgrade itself (adds 157 MB of old versions into the cache): https://pastebin.com/AFny1enP

Edit: Moved code to as per @omry.

@omry
Copy link
Contributor

omry commented Dec 15, 2020

can you use pastebin when pasting very long pastes? it makes looking for comments here very painful.

@hungrybirder
Copy link

Oh my god,
Please fix it ASAP.
Thank you.

@wyqsmith
Copy link

Gosh...Plz...CI System bombed by pip...

@ryboe
Copy link

ryboe commented Dec 15, 2020

This is the mitigation I'm using until the bug is fixed.

python -m pip install 'pip==20.3.1'

@Corfucinas
Copy link

@wyqsmith

Exactly

@uranusjr
Copy link
Member

uranusjr commented Dec 15, 2020

I did some quick research, and this bug seems to have been introduced by the packaging 20.8 vendor upgrade. This was unfortunately not caught due to the PyPI search API was causing failures on CI, and we missed the test failure in a sea of red. (See update below)

Unfortunately I cannot do anything right now since I don’t have access to PyPI versions, but will try to contact other members who do when they are available. (20.3.2 has now been yanked from PyPI. Thanks @xavfernandez!)

@uranusjr
Copy link
Member

uranusjr commented Dec 15, 2020

I did some bisecting, and the issue is indeed from a resolver change, specifically in d45541c.

The issue was not identified in tests because it requires a set of conditions to trigger (I have not figured out the exact conditions).

@tiantian1645
Copy link

This is the mitigation I'm using until the bug is fixed.

python -m pip install 'pip==20.3.1'

ValueError: Unable to find resource t64.exe in package pip._vendor.distlib

@MappyLiam
Copy link

Oh.. I should have seen this issue before I struggle like this ...

@uranusjr
Copy link
Member

@tiantian1645 This is a common issue when you try to roll back a broken pip version. See #8450 (comment) for steps to rescure.

@lsaavedr

This comment has been minimized.

@uranusjr
Copy link
Member

uranusjr commented Dec 15, 2020

People affected by this: Could you try

pip install --force-reinstall "pip @ https://github.com/uranusjr/pip/archive/new-resolver-do-not-eagerly-consume-in-upgrade-mode.zip"

and see if it behaves correctly?

@lsaavedr
Copy link

seem to be good... but with version 21.0.dev0? I can not check if this fix "no ignore yanked" bug... can you make this package with 20.3.1 number of version to check that?

@PeterPyPan
Copy link

You can temporary workaround it by using the old resolver:
pip install --upgrade pip --use-deprecated=legacy-resolver

@lsaavedr
Copy link

pip install -U pip --use-deprecated=legacy-resolver work flawesly...

@bersbersbers
Copy link

Since this is not an infinite loop, please change the title of this issue to prevent further duplicates.

@pradyunsg pradyunsg changed the title pip 20.3.2 goes into infinite loop resolving dependencies pip 20.3.2 eagerly downloads all versions of a package during dependency resolution Dec 15, 2020
@pradyunsg
Copy link
Member

pradyunsg commented Dec 15, 2020

Oh boi. This is "fun". Sorry for the disruption folks!


Let's revert d45541c, and then take things from there?

@arderyp
Copy link

arderyp commented Dec 15, 2020

for clarity, if you are currently affected by this, and your pip is barfing endlessly, run whichever corresponds to your permissions and pip version:

pip install 'pip==20.3.3'

# or

sudo pip install 'pip==20.3.3'

# or

pip3 install 'pip==20.3.3'

# or

sudo pip3 install 'pip==20.3.3'

@pabloa
Copy link

pabloa commented Dec 15, 2020

pip 20.3.3 is still dumping 23 Gb of dependencies:

INFO: pip is looking at multiple versions of sympy to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of statsmodels to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of redis to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of pyjwt to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of pika to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of parsimonious to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of pandas to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of multiprocess to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of marshmallow to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of language-tags to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of html5lib to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of flask-testing to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of flask-swagger-ui to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of flask-cors to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of flask-compress to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of flask-apispec to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of flask to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of cython to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of apispec to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of modelling2 to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of langdetect to determine which version is compatible with other requirements. This could take a while.

Example:

INFO: This is taking longer than usual. You might need to provide the dependency resolver with stricter constraints to reduce runtime. If you want to abort this run, you can press Ctrl + C to do so. To improve how pip performs, tell us what happened here: https://pip.pypa.io/surveys/backtracking
  Using cached conllu-4.2-py2.py3-none-any.whl (14 kB)
  Using cached conllu-4.1-py2.py3-none-any.whl (14 kB)
  Using cached conllu-4.0-py2.py3-none-any.whl (13 kB)
  Using cached conllu-3.1.1-py2.py3-none-any.whl (14 kB)
  Using cached conllu-3.1-py2.py3-none-any.whl (14 kB)
  Using cached conllu-3.0-py2.py3-none-any.whl (14 kB)
INFO: pip is looking at multiple versions of conllu to determine which version is compatible with other requirements. This could take a while.
  Using cached conllu-2.3.2-py2.py3-none-any.whl (13 kB)
  Using cached conllu-2.3-py2.py3-none-any.whl (13 kB)
  Using cached conllu-2.2.2-py2.py3-none-any.whl (13 kB)
  Using cached conllu-2.2.1-py2.py3-none-any.whl (12 kB)
  Using cached conllu-2.2-py2.py3-none-any.whl (12 kB)
INFO: This is taking longer than usual. You might need to provide the dependency resolver with stricter constraints to reduce runtime. If you want to abort this run, you can press Ctrl + C to do so. To improve how pip performs, tell us what happened here: https://pip.pypa.io/surveys/backtracking
  Using cached conllu-2.1.1-py2.py3-none-any.whl (12 kB)
  Using cached conllu-2.1-py2.py3-none-any.whl (12 kB)
  Using cached conllu-2.0-py2.py3-none-any.whl (10 kB)
  Using cached conllu-1.5-py2.py3-none-any.whl (9.8 kB)
  Using cached conllu-1.4.1-py2.py3-none-any.whl (9.5 kB)
  Using cached conllu-1.4-py2.py3-none-any.whl (9.5 kB)
  Using cached conllu-1.3.2-py2.py3-none-any.whl (9.3 kB)
  Using cached conllu-1.3.1-py2.py3-none-any.whl (9.3 kB)
  Using cached conllu-1.3-py2.py3-none-any.whl (9.3 kB)
  Using cached conllu-1.2.3-py2.py3-none-any.whl (9.2 kB)
  Using cached conllu-1.2.2-py2.py3-none-any.whl (9.2 kB)
  Using cached conllu-1.2.1-py2.py3-none-any.whl (9.1 kB)
  Using cached conllu-1.2-py2.py3-none-any.whl (9.1 kB)
  Using cached conllu-1.1-py2.py3-none-any.whl (8.8 kB)
  Using cached conllu-1.0.1-py2.py3-none-any.whl (8.3 kB)
  Using cached conllu-1.0-py2.py3-none-any.whl (8.2 kB)
  Using cached conllu-0.11-py2.py3-none-any.whl (6.8 kB)
  Using cached conllu-0.10.7-py2.py3-none-any.whl (6.3 kB)
  Using cached conllu-0.10.6-py2.py3-none-any.whl (6.2 kB)
  Using cached conllu-0.10.5-py2.py3-none-any.whl (6.2 kB)
  Using cached conllu-0.10.4-py2.py3-none-any.whl (6.2 kB)
  Using cached conllu-0.10.3-py3-none-any.whl (5.4 kB)
  Using cached conllu-0.10.2-py3-none-any.whl (5.4 kB)
  Using cached conllu-0.10.1.tar.gz (5.4 kB)
  Using cached conllu-0.10.tar.gz (5.3 kB)
  Using cached conllu-0.9.tar.gz (4.5 kB)
  Using cached conllu-0.8.tar.gz (4.5 kB)
  Using cached conllu-0.7.tar.gz (4.4 kB)
  Using cached conllu-0.6.1.tar.gz (4.3 kB)
  Using cached conllu-0.6.tar.gz (4.2 kB)
  Using cached conllu-0.5.tar.gz (3.8 kB)
  Using cached conllu-0.4.tar.gz (2.1 kB)
  Using cached conllu-0.3.tar.gz (2.0 kB)
  Using cached conllu-0.2-py2.py3-none-any.whl (8.2 kB)
  Using cached conllu-0.1.tar.gz (1.6 kB)

This is not scalable. Before things worked fine without downloading so many packages.

@benjaminbauer
Copy link

pip 20.3.3 works fine for me on macOS 11.1. @pabloa I ran pip cache purge after pip install 'pip==20.3.3'. Just running pip install -U pip lead to pip trying to install its whole ancestry since it still was 20.3.2

@uranusjr
Copy link
Member

Yes, the issue is triggered by the -U (or --upgrade) flag. So the escape plan is to install another pip version without that flag.

I’ll close this since the eager download issue seems fixed. The “pip downloads many versions” issue is tracked in #9187.

@pabloa
Copy link

pabloa commented Dec 15, 2020

I tested with an existent and a new virtual environment. The last report is from a CI server that deletes everything and creates a new virtual environment.

@gGonz
Copy link
Author

gGonz commented Dec 16, 2020

Yeah, seems to be fixed. Going from 20.3.1 to 20.3.3 with pip install -U pip and doing the same over 20.3.3 works as expected. Thanks!

@pembo13
Copy link

pembo13 commented Dec 16, 2020

Thanks for the fix on this... I was starting to think I was crazy.

And for the search engines: pip downloading lots of old versions

@pradyunsg pradyunsg unpinned this issue Dec 18, 2020
@bl-ue
Copy link

bl-ue commented Dec 18, 2020

Does anyone know how to install 20.3.3 if you have 20.3.2? I try to upgrade and it keeps pulling every version.

@bl-ue
Copy link

bl-ue commented Dec 18, 2020

Nevermind, pip install 'pip==20.3.3' (#9284 (comment)) worked perfectly.

@jaraco
Copy link
Member

jaraco commented Dec 21, 2020

FYI (and to capture the experience), I also got the slightly deranged experience when attempting to upgrade from 20.3.2:

draft $ python -m pip install -U pip
Requirement already satisfied: pip in /Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages (20.3.2)
Collecting pip
  Using cached pip-20.3.3-py2.py3-none-any.whl (1.5 MB)
  Using cached pip-20.3.3.tar.gz (1.5 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-20.3.1-py2.py3-none-any.whl (1.5 MB)
  Using cached pip-20.3.1.tar.gz (1.5 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-20.3-py2.py3-none-any.whl (1.5 MB)
  Using cached pip-20.3.tar.gz (1.5 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-20.2.4-py2.py3-none-any.whl (1.5 MB)
  Using cached pip-20.2.4.tar.gz (1.5 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-20.2.3-py2.py3-none-any.whl (1.5 MB)
  Using cached pip-20.2.3.tar.gz (1.5 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-20.2.2-py2.py3-none-any.whl (1.5 MB)
  Using cached pip-20.2.2.tar.gz (1.5 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-20.2.1-py2.py3-none-any.whl (1.5 MB)
  Using cached pip-20.2.1.tar.gz (1.5 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-20.2-py2.py3-none-any.whl (1.5 MB)
  Using cached pip-20.2.tar.gz (1.5 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-20.1.1-py2.py3-none-any.whl (1.5 MB)
  Using cached pip-20.1.1.tar.gz (1.5 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-20.1-py2.py3-none-any.whl (1.5 MB)
  Using cached pip-20.1.tar.gz (1.5 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-20.0.2-py2.py3-none-any.whl (1.4 MB)
  Using cached pip-20.0.2.tar.gz (1.4 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-20.0.1-py2.py3-none-any.whl (1.5 MB)
  Using cached pip-20.0.1.tar.gz (1.4 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-19.3.1-py2.py3-none-any.whl (1.4 MB)
  Using cached pip-19.3.1.tar.gz (1.4 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-19.3-py2.py3-none-any.whl (1.4 MB)
  Using cached pip-19.3.tar.gz (1.4 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-19.2.3-py2.py3-none-any.whl (1.4 MB)
  Using cached pip-19.2.3.tar.gz (1.4 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-19.2.2-py2.py3-none-any.whl (1.4 MB)
  Using cached pip-19.2.2.tar.gz (1.4 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-19.2.1-py2.py3-none-any.whl (1.4 MB)
  Using cached pip-19.2.1.tar.gz (1.4 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-19.2-py2.py3-none-any.whl (1.4 MB)
  Using cached pip-19.2.tar.gz (1.4 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-19.1.1-py2.py3-none-any.whl (1.4 MB)
  Using cached pip-19.1.1.tar.gz (1.3 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-19.1-py2.py3-none-any.whl (1.4 MB)
  Using cached pip-19.1.tar.gz (1.3 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-19.0.3-py2.py3-none-any.whl (1.4 MB)
  Using cached pip-19.0.3.tar.gz (1.3 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-19.0.2-py2.py3-none-any.whl (1.4 MB)
  Using cached pip-19.0.2.tar.gz (1.3 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-19.0.1-py2.py3-none-any.whl (1.4 MB)
  Downloading pip-19.0.1.tar.gz (1.3 MB)
     |████████████████████████████████| 1.3 MB 2.4 MB/s 
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Downloading pip-19.0-py2.py3-none-any.whl (1.4 MB)
     |████████████████████████████████| 1.4 MB 7.5 MB/s 
  Downloading pip-19.0.tar.gz (1.3 MB)
     |████████████████████████████████| 1.3 MB 6.0 MB/s 
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-18.1-py2.py3-none-any.whl (1.3 MB)
  Downloading pip-18.1.tar.gz (1.3 MB)
     |████████████████████████████████| 1.3 MB 4.5 MB/s 
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Downloading pip-18.0-py2.py3-none-any.whl (1.3 MB)
     |████████████████████████████████| 1.3 MB 4.7 MB/s 
  Downloading pip-18.0.tar.gz (1.2 MB)
     |████████████████████████████████| 1.2 MB 2.5 MB/s 
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-10.0.1-py2.py3-none-any.whl (1.3 MB)
  Downloading pip-10.0.1.tar.gz (1.2 MB)
     |████████████████████████████████| 1.2 MB 6.4 MB/s 
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Downloading pip-10.0.0-py2.py3-none-any.whl (1.3 MB)
     |████████████████████████████████| 1.3 MB 5.4 MB/s 
  Downloading pip-10.0.0.tar.gz (1.2 MB)
     |████████████████████████████████| 1.2 MB 10.3 MB/s 
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
  Using cached pip-9.0.3-py2.py3-none-any.whl (1.4 MB)
  Downloading pip-9.0.3.tar.gz (1.3 MB)
     |████████████████████████████████| 1.3 MB 6.7 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_95bb228d94274dbba04bc1e3d2878384/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_95bb228d94274dbba04bc1e3d2878384/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-stqa25g2
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_95bb228d94274dbba04bc1e3d2878384/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/c4/44/e6b8056b6c8f2bfd1445cc9990f478930d8e3459e9dbf5b8e2d2922d64d3/pip-9.0.3.tar.gz#sha256=7bf48f9a693be1d58f49f7af7e0ae9fe29fd671cde8a55e6edca3581c4ef5796 (from https://pypi.org/simple/pip/) (requires-python:>=2.6,!=3.0.*,!=3.1.*,!=3.2.*). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-9.0.2-py2.py3-none-any.whl (1.4 MB)
     |████████████████████████████████| 1.4 MB 5.5 MB/s 
  Downloading pip-9.0.2.tar.gz (1.3 MB)
     |████████████████████████████████| 1.3 MB 5.5 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_29e23553cfdc47c5bbf4f740fe10bd18/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_29e23553cfdc47c5bbf4f740fe10bd18/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-sv7t234w
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_29e23553cfdc47c5bbf4f740fe10bd18/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/e5/8f/3fc66461992dc9e9fcf5e005687d5f676729172dda640df2fd8b597a6da7/pip-9.0.2.tar.gz#sha256=88110a224e9d30e5d76592a0b2130ef10e7e67a6426e8617bb918fffbfe91fe5 (from https://pypi.org/simple/pip/) (requires-python:>=2.6,!=3.0.*,!=3.1.*,!=3.2.*). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-9.0.1-py2.py3-none-any.whl (1.3 MB)
     |████████████████████████████████| 1.3 MB 6.4 MB/s 
  Downloading pip-9.0.1.tar.gz (1.2 MB)
     |████████████████████████████████| 1.2 MB 5.1 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_0d74c4fe47594e848ee41ed526a6aee0/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_0d74c4fe47594e848ee41ed526a6aee0/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-6yupy2x5
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_0d74c4fe47594e848ee41ed526a6aee0/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/11/b6/abcb525026a4be042b486df43905d6893fb04f05aac21c32c638e939e447/pip-9.0.1.tar.gz#sha256=09f243e1a7b461f654c26a725fa373211bb7ff17a9300058b205c61658ca940d (from https://pypi.org/simple/pip/) (requires-python:>=2.6,!=3.0.*,!=3.1.*,!=3.2.*). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-9.0.0-py2.py3-none-any.whl (1.3 MB)
     |████████████████████████████████| 1.3 MB 19.3 MB/s 
  Downloading pip-9.0.0.tar.gz (1.2 MB)
     |████████████████████████████████| 1.2 MB 5.5 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_074fb73d12aa4fb086a57ef52a87eaf5/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_074fb73d12aa4fb086a57ef52a87eaf5/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-jwyl6pie
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_074fb73d12aa4fb086a57ef52a87eaf5/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/5e/53/eaef47e5e2f75677c9de0737acc84b659b78a71c4086f424f55346a341b5/pip-9.0.0.tar.gz#sha256=f62fb70e7e000e46fce12aaeca752e5281a5446977fe5a75ab4189a43b3f8793 (from https://pypi.org/simple/pip/) (requires-python:>=2.6,!=3.0.*,!=3.1.*,!=3.2.*). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-8.1.2-py2.py3-none-any.whl (1.2 MB)
     |████████████████████████████████| 1.2 MB 6.1 MB/s 
  Downloading pip-8.1.2.tar.gz (1.1 MB)
     |████████████████████████████████| 1.1 MB 6.8 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_d6ad3b24ba92442b80bd3a36754d4783/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_d6ad3b24ba92442b80bd3a36754d4783/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-3o7evniu
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_d6ad3b24ba92442b80bd3a36754d4783/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/e7/a8/7556133689add8d1a54c0b14aeff0acb03c64707ce100ecd53934da1aa13/pip-8.1.2.tar.gz#sha256=4d24b03ffa67638a3fa931c09fd9e0273ffa904e95ebebe7d4b1a54c93d7b732 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-8.1.1-py2.py3-none-any.whl (1.2 MB)
     |████████████████████████████████| 1.2 MB 5.9 MB/s 
  Downloading pip-8.1.1.tar.gz (1.1 MB)
     |████████████████████████████████| 1.1 MB 7.6 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_68a9d6dc2ea34d5da28f3bfd7e2ccb9e/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_68a9d6dc2ea34d5da28f3bfd7e2ccb9e/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-bstaay21
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_68a9d6dc2ea34d5da28f3bfd7e2ccb9e/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/41/27/9a8d24e1b55bd8c85e4d022da2922cb206f183e2d18fee4e320c9547e751/pip-8.1.1.tar.gz#sha256=3e78d3066aaeb633d185a57afdccf700aa2e660436b4af618bcb6ff0fa511798 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-8.1.0-py2.py3-none-any.whl (1.2 MB)
     |████████████████████████████████| 1.2 MB 31.4 MB/s 
  Downloading pip-8.1.0.tar.gz (1.1 MB)
     |████████████████████████████████| 1.1 MB 3.7 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_661b006e115f4b77bdc1131cc9fdbcc9/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_661b006e115f4b77bdc1131cc9fdbcc9/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-ag2fw_z1
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_661b006e115f4b77bdc1131cc9fdbcc9/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/3c/72/6981d5adf880adecb066a1a1a4c312a17f8d787a3b85446967964ac66d55/pip-8.1.0.tar.gz#sha256=d8faa75dd7d0737b16d50cd0a56dc91a631c79ecfd8d38b80f6ee929ec82043e (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-8.0.3-py2.py3-none-any.whl (1.2 MB)
     |████████████████████████████████| 1.2 MB 6.4 MB/s 
  Downloading pip-8.0.3.tar.gz (1.1 MB)
     |████████████████████████████████| 1.1 MB 6.3 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_dfe42baf9aa74d7098e7db79d2f8bb70/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_dfe42baf9aa74d7098e7db79d2f8bb70/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-2pmlyzuj
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_dfe42baf9aa74d7098e7db79d2f8bb70/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/22/f3/14bc87a4f6b5ec70b682765978a6f3105bf05b6781fa97e04d30138bd264/pip-8.0.3.tar.gz#sha256=30f98b66f3fe1069c529a491597d34a1c224a68640c82caf2ade5f88aa1405e8 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-8.0.2-py2.py3-none-any.whl (1.2 MB)
     |████████████████████████████████| 1.2 MB 6.3 MB/s 
  Downloading pip-8.0.2.tar.gz (1.1 MB)
     |████████████████████████████████| 1.1 MB 5.0 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_a45d9acfe8c64013a09089ff61bbb48b/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_a45d9acfe8c64013a09089ff61bbb48b/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-we_gtaro
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_a45d9acfe8c64013a09089ff61bbb48b/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/ce/15/ee1f9a84365423e9ef03d0f9ed0eba2fb00ac1fffdd33e7b52aea914d0f8/pip-8.0.2.tar.gz#sha256=46f4bd0d8dfd51125a554568d646fe4200a3c2c6c36b9f2d06d2212148439521 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-8.0.1-py2.py3-none-any.whl (1.2 MB)
     |████████████████████████████████| 1.2 MB 4.9 MB/s 
  Downloading pip-8.0.1.tar.gz (1.1 MB)
     |████████████████████████████████| 1.1 MB 6.0 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_f6c0cd53aebe4ae4904ee9d26f054037/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_f6c0cd53aebe4ae4904ee9d26f054037/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-qc5jpxgd
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_f6c0cd53aebe4ae4904ee9d26f054037/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/ea/66/a3d6187bd307159fedf8575c0d9ee2294d13b1cdd11673ca812e6a2dda8f/pip-8.0.1.tar.gz#sha256=477c50b3e538a7ac0fa611fb8b877b04b33fb70d325b12a81b9dbf3eb1158a4d (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-8.0.0-py2.py3-none-any.whl (1.2 MB)
     |████████████████████████████████| 1.2 MB 4.7 MB/s 
  Downloading pip-8.0.0.tar.gz (1.1 MB)
     |████████████████████████████████| 1.1 MB 2.9 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_e4a8a6a19bd540f087de418c48b98949/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_e4a8a6a19bd540f087de418c48b98949/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-71gemehn
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_e4a8a6a19bd540f087de418c48b98949/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/e3/2d/03c014d11e66628abf2fda5ca00f779cbe7b5292c5cd13d42a95b94aa9b8/pip-8.0.0.tar.gz#sha256=90112b296152f270cb8dddcd19b7b87488d9e002e8cf622e14c4da9c2f6319b1 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-7.1.2-py2.py3-none-any.whl (1.1 MB)
     |████████████████████████████████| 1.1 MB 4.3 MB/s 
  Downloading pip-7.1.2.tar.gz (1.0 MB)
     |████████████████████████████████| 1.0 MB 3.1 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_34d75483c59b4819b7d85e7931ee45ff/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_34d75483c59b4819b7d85e7931ee45ff/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-tctvxq_1
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_34d75483c59b4819b7d85e7931ee45ff/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/d0/92/1e8406c15d9372084a5bf79d96da3a0acc4e7fcf0b80020a4820897d2a5c/pip-7.1.2.tar.gz#sha256=ca047986f0528cfa975a14fb9f7f106271d4e0c3fe1ddced6c1db2e7ae57a477 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-7.1.1-py2.py3-none-any.whl (1.1 MB)
     |████████████████████████████████| 1.1 MB 5.4 MB/s 
  Downloading pip-7.1.1.tar.gz (1.0 MB)
     |████████████████████████████████| 1.0 MB 6.4 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_fc57bd9799f54d2a86b6c872e49e4ec1/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_fc57bd9799f54d2a86b6c872e49e4ec1/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-2znala5p
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_fc57bd9799f54d2a86b6c872e49e4ec1/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/3b/bb/b3f2a95494fd3f01d3b3ae530e7c0e910dc25e88e30787b0a5e10cbc0640/pip-7.1.1.tar.gz#sha256=b22fe3c93a13fc7c04f145a42fd2ad50a9e3e1b8a7eed2e2b1c66e540a0951da (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-7.1.0-py2.py3-none-any.whl (1.1 MB)
     |████████████████████████████████| 1.1 MB 6.8 MB/s 
  Downloading pip-7.1.0.tar.gz (1.0 MB)
     |████████████████████████████████| 1.0 MB 8.8 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_4aa03eab29044a168c4f4a0a9275a7be/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_4aa03eab29044a168c4f4a0a9275a7be/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-achhkifg
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_4aa03eab29044a168c4f4a0a9275a7be/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/7e/71/3c6ece07a9a885650aa6607b0ebfdf6fc9a3ef8691c44b5e724e4eee7bf2/pip-7.1.0.tar.gz#sha256=d5275ba3221182a5dd1b6bcfbfc5ec277fb399dd23226d6fa018048f7e0f10f2 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-7.0.3-py2.py3-none-any.whl (1.1 MB)
     |████████████████████████████████| 1.1 MB 6.2 MB/s 
  Downloading pip-7.0.3.tar.gz (1.1 MB)
     |████████████████████████████████| 1.1 MB 8.1 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_3e5dfb0000a14d00814dbeac25e5680d/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_3e5dfb0000a14d00814dbeac25e5680d/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-slkvs58u
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_3e5dfb0000a14d00814dbeac25e5680d/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/35/59/5b23115758ba0f2fc465c459611865173ef006202ba83f662d1f58ed2fb8/pip-7.0.3.tar.gz#sha256=b4c598825a6f6dc2cac65968feb28e6be6c1f7f1408493c60a07eaa731a0affd (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-7.0.2-py2.py3-none-any.whl (1.1 MB)
     |████████████████████████████████| 1.1 MB 3.3 MB/s 
  Downloading pip-7.0.2.tar.gz (1.1 MB)
     |████████████████████████████████| 1.1 MB 9.0 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_dfb60a4da0264ebe8e7cc349fcb5536c/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_dfb60a4da0264ebe8e7cc349fcb5536c/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-wjj_6ak5
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_dfb60a4da0264ebe8e7cc349fcb5536c/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/75/b1/66532c273bca0133e42c3b4540a1609289f16e3046f1830f18c60794d661/pip-7.0.2.tar.gz#sha256=ba28fa60b573a9444e7b78ccb3b0f261d1f66f46d20403f9dce37b18a6aed405 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-7.0.1-py2.py3-none-any.whl (1.1 MB)
     |████████████████████████████████| 1.1 MB 4.7 MB/s 
  Downloading pip-7.0.1.tar.gz (1.1 MB)
     |████████████████████████████████| 1.1 MB 5.0 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_fe73b4c40ef64a4b95b6d6ed82ff6b8d/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_fe73b4c40ef64a4b95b6d6ed82ff6b8d/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-0o0r4bes
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_fe73b4c40ef64a4b95b6d6ed82ff6b8d/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/4a/83/9ae4362a80739657e0c8bb628ea3fa0214a9aba7c8590dacc301ea293f73/pip-7.0.1.tar.gz#sha256=cfec177552fdd0b2d12b72651c8e874f955b4c62c1c2c9f2588cbdc1c0d0d416 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-7.0.0-py2.py3-none-any.whl (1.1 MB)
     |████████████████████████████████| 1.1 MB 6.0 MB/s 
  Downloading pip-7.0.0.tar.gz (1.1 MB)
     |████████████████████████████████| 1.1 MB 5.2 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_4eb8b81bed7141f49d64e89b7580d95f/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_4eb8b81bed7141f49d64e89b7580d95f/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-kxtqqf00
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_4eb8b81bed7141f49d64e89b7580d95f/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/c6/16/6475b142927ca5d03e3b7968efa5b0edd103e4684ecfde181a25f6fa2505/pip-7.0.0.tar.gz#sha256=7b46bfc1b95494731de306a688e2a7bc056d7fa7ad27e026908fb2ae67fed23d (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-6.1.1-py2.py3-none-any.whl (1.1 MB)
     |████████████████████████████████| 1.1 MB 5.1 MB/s 
  Downloading pip-6.1.1.tar.gz (1.1 MB)
     |████████████████████████████████| 1.1 MB 7.1 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_2b5ea4e9fba14e59bb3efcf70ee9e338/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_2b5ea4e9fba14e59bb3efcf70ee9e338/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-ky0knyc2
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_2b5ea4e9fba14e59bb3efcf70ee9e338/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/bf/85/871c126b50b8ee0b9819e8a63b614aedd264577e73478caedcd447e8f28c/pip-6.1.1.tar.gz#sha256=89f3b626d225e08e7f20d85044afa40f612eb3284484169813dc2d0631f2a556 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-6.1.0-py2.py3-none-any.whl (1.1 MB)
     |████████████████████████████████| 1.1 MB 6.5 MB/s 
  Downloading pip-6.1.0.tar.gz (1.1 MB)
     |████████████████████████████████| 1.1 MB 6.6 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_0bbbe84984a24a428ec2373213c30e50/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_0bbbe84984a24a428ec2373213c30e50/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-fh79sasj
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_0bbbe84984a24a428ec2373213c30e50/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/6c/84/432eb60bbcb414b9cdfcb135d5f4925e253c74e7d6916ada79990d6cc1a0/pip-6.1.0.tar.gz#sha256=89f120e2ab3d25ab70c36eb28ad4f280fc9ba71736e74d3055f609c1f9173768 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-6.0.8-py2.py3-none-any.whl (1.3 MB)
     |████████████████████████████████| 1.3 MB 7.7 MB/s 
  Downloading pip-6.0.8.tar.gz (1.2 MB)
     |████████████████████████████████| 1.2 MB 6.2 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_b38ba7960c954293a3edf4b958868dc0/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_b38ba7960c954293a3edf4b958868dc0/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-tw16cky5
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_b38ba7960c954293a3edf4b958868dc0/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/ef/8a/e3a980bc0a7f791d72c1302f65763ed300f2e14c907ac033e01b44c79e5e/pip-6.0.8.tar.gz#sha256=0d58487a1b7f5be2e5e965c11afbea1dc44ecec8069de03491a4d0d6c85f4551 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-6.0.7-py2.py3-none-any.whl (1.3 MB)
     |████████████████████████████████| 1.3 MB 4.9 MB/s 
  Downloading pip-6.0.7.tar.gz (1.2 MB)
     |████████████████████████████████| 1.2 MB 6.7 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_4b3b06d5491349c997b10d88009349eb/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_4b3b06d5491349c997b10d88009349eb/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-c9devpz8
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_4b3b06d5491349c997b10d88009349eb/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/52/85/b160ebdaa84378df6bb0176d4eed9f57edca662446174eead7a9e2e566d6/pip-6.0.7.tar.gz#sha256=35a5a43ac6b7af83ed47ea5731a365f43d350a3a7267e039e5f06b61d42ab3c2 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-6.0.6-py2.py3-none-any.whl (1.3 MB)
     |████████████████████████████████| 1.3 MB 12.5 MB/s 
  Downloading pip-6.0.6.tar.gz (1.2 MB)
     |████████████████████████████████| 1.2 MB 3.8 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_0b91192e0dda4464881c56143dc503b6/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_0b91192e0dda4464881c56143dc503b6/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-dmj87q4v
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_0b91192e0dda4464881c56143dc503b6/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/f6/ce/d9e4e178b66c766c117f62ddf4fece019ef9d50127a8926d2f60300d615e/pip-6.0.6.tar.gz#sha256=3a14091299dcdb9bab9e9004ae67ac401f2b1b14a7c98de074ca74fdddf4bfa0 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-6.0.5-py2.py3-none-any.whl (1.3 MB)
     |████████████████████████████████| 1.3 MB 6.5 MB/s 
  Downloading pip-6.0.5.tar.gz (1.2 MB)
     |████████████████████████████████| 1.2 MB 9.0 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_0872d94aad7443e698ad2d5b190e5b0e/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_0872d94aad7443e698ad2d5b190e5b0e/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-ztyfp7t_
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_0872d94aad7443e698ad2d5b190e5b0e/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/19/f2/58628768f618c8c9fea878e0fb97730c0b8a838d3ab3f325768bf12dac94/pip-6.0.5.tar.gz#sha256=3bf42d28be9085ab2e9aecfd69a6da2d31563fe833304bf71a620a30c38ab8a2 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-6.0.4-py2.py3-none-any.whl (1.3 MB)
     |████████████████████████████████| 1.3 MB 10.6 MB/s 
  Downloading pip-6.0.4.tar.gz (1.2 MB)
     |████████████████████████████████| 1.2 MB 7.3 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_37f609b1e48d460098a003b5343ef467/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_37f609b1e48d460098a003b5343ef467/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-oigm4pzq
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_37f609b1e48d460098a003b5343ef467/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/02/a1/c90f19910ee153d7a0efca7216758121118d7e93084276541383fe9ca82e/pip-6.0.4.tar.gz#sha256=1dbbff9c369e510c7468ab68ba52c003f68f83c99c2f8259acd51099e8799f1e (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-6.0.3-py2.py3-none-any.whl (1.3 MB)
     |████████████████████████████████| 1.3 MB 8.3 MB/s 
  Downloading pip-6.0.3.tar.gz (1.2 MB)
     |████████████████████████████████| 1.2 MB 4.7 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_77b2c1eb256647e8b130fecd0bcb9bef/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_77b2c1eb256647e8b130fecd0bcb9bef/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-er4lzipj
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_77b2c1eb256647e8b130fecd0bcb9bef/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/ce/63/8d99ae60d11ae1a65f5d4fc39a529a598bd3b8e067132210cb0c4d9e9f74/pip-6.0.3.tar.gz#sha256=b091a35f5fa0faffac0b27b97e1e1e93ffe63b463c2ea8dbde0c1fb987933614 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-6.0.2-py2.py3-none-any.whl (1.3 MB)
     |████████████████████████████████| 1.3 MB 8.8 MB/s 
  Downloading pip-6.0.2.tar.gz (1.2 MB)
     |████████████████████████████████| 1.2 MB 6.8 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_83f095e40faa46c8b302c83c62c7457b/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_83f095e40faa46c8b302c83c62c7457b/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-u8uokpy7
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_83f095e40faa46c8b302c83c62c7457b/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/4c/5a/f9e8e3de0153282c7cb54a9b991af225536ac914bac858ca664cf883bb3e/pip-6.0.2.tar.gz#sha256=6fa90667706a679e3dc75b27a51fddafa64401c45e96f8ae6c20978183290077 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-6.0.1-py2.py3-none-any.whl (1.3 MB)
     |████████████████████████████████| 1.3 MB 6.5 MB/s 
  Downloading pip-6.0.1.tar.gz (1.2 MB)
     |████████████████████████████████| 1.2 MB 5.7 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_5e314d01c9a44ba8841b6104dcccb9f1/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_5e314d01c9a44ba8841b6104dcccb9f1/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-kuz3kbd9
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_5e314d01c9a44ba8841b6104dcccb9f1/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/4d/c3/8675b90cd89b9b222062f4f6c7e9d48b0387f5b35cbf747a74403a883e56/pip-6.0.1.tar.gz#sha256=fa2f7c68da4a405d673aa38542f9df009d60026db4f532429ac9cbfbda1f959d (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-6.0-py2.py3-none-any.whl (1.3 MB)
     |████████████████████████████████| 1.3 MB 5.1 MB/s 
  Downloading pip-6.0.tar.gz (1.2 MB)
     |████████████████████████████████| 1.2 MB 6.7 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_e652e6ab0aff4373995358f60d6469e1/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_e652e6ab0aff4373995358f60d6469e1/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-6xhjz7v1
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_e652e6ab0aff4373995358f60d6469e1/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/38/fd/065c66a88398f240e344fdf496b9707f92d75f88eedc3d10ff847b28a657/pip-6.0.tar.gz#sha256=6103897f1bb68d3f933edd60f3e3830c4ea6b8abf7a4b500db148921b11f6c9b (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-1.5.6-py2.py3-none-any.whl (1.0 MB)
     |████████████████████████████████| 1.0 MB 8.4 MB/s 
  Downloading pip-1.5.6.tar.gz (938 kB)
     |████████████████████████████████| 938 kB 6.4 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_20ed18afca4f41db951f4d1e3c9ad645/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_20ed18afca4f41db951f4d1e3c9ad645/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-2fpwpqzh
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_20ed18afca4f41db951f4d1e3c9ad645/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/45/db/4fb9a456b4ec4d3b701456ef562b9d72d76b6358e0c1463d17db18c5b772/pip-1.5.6.tar.gz#sha256=b1a4ae66baf21b7eb05a5e4f37c50c2706fa28ea1f8780ce8efe14dcd9f1726c (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-1.5.5-py2.py3-none-any.whl (1.2 MB)
     |████████████████████████████████| 1.2 MB 7.4 MB/s 
  Downloading pip-1.5.5.tar.gz (1.1 MB)
     |████████████████████████████████| 1.1 MB 5.6 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_94f599c0665f47968a9dbe557b63d951/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_94f599c0665f47968a9dbe557b63d951/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-vbpc33xw
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_94f599c0665f47968a9dbe557b63d951/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/88/01/a442fde40bd9aaf837612536f16ab751fac628807fd718690795b8ade77d/pip-1.5.5.tar.gz#sha256=4b7f5124364ae9b5ba833dcd8813a84c1c06fba1d7c8543323c7af4b33188eca (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-1.5.4-py2.py3-none-any.whl (1.2 MB)
     |████████████████████████████████| 1.2 MB 8.1 MB/s 
  Downloading pip-1.5.4.tar.gz (1.1 MB)
     |████████████████████████████████| 1.1 MB 10.4 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_c1bc1a3913ce44f1ba3cd54e5e23483a/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_c1bc1a3913ce44f1ba3cd54e5e23483a/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-ozx6hoan
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_c1bc1a3913ce44f1ba3cd54e5e23483a/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/78/d8/6e58a7130d457edadb753a0ea5708e411c100c7e94e72ad4802feeef735c/pip-1.5.4.tar.gz#sha256=70208a250bb4afdbbdd74c3ac35d4ab9ba1eb6852d02567a6a87f2f5104e30b9 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-1.5.3-py2.py3-none-any.whl (1.2 MB)
     |████████████████████████████████| 1.2 MB 9.2 MB/s 
  Downloading pip-1.5.3.tar.gz (1.1 MB)
     |████████████████████████████████| 1.1 MB 8.4 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_3169f7dd8e394bf6911bf5b5f8c8f01c/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_3169f7dd8e394bf6911bf5b5f8c8f01c/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-fl0xqe7b
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_3169f7dd8e394bf6911bf5b5f8c8f01c/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/55/de/671a48ad313c808623041fc475f7c8f7610401d9f573f06b40eeb84e74e3/pip-1.5.3.tar.gz#sha256=dc53b4d28b88556a37cd73052b6d1d08cc644c6724e37c4d38a2e3c03c5440b2 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-1.5.2-py2.py3-none-any.whl (1.2 MB)
     |████████████████████████████████| 1.2 MB 6.8 MB/s 
  Downloading pip-1.5.2.tar.gz (1.1 MB)
     |████████████████████████████████| 1.1 MB 3.1 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_cd9cf9522ef24cecbdc0fe807c93caf5/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_cd9cf9522ef24cecbdc0fe807c93caf5/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-kkelgesj
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_cd9cf9522ef24cecbdc0fe807c93caf5/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/ed/94/391a003107f6ec997c314199d03bff1c105af758ee490e3255353574487b/pip-1.5.2.tar.gz#sha256=2a8a3e08e652d3a40edbb39264bf01f8ff3c32520a79113357cca1f30533f738 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-1.5.1-py2.py3-none-any.whl (1.2 MB)
     |████████████████████████████████| 1.2 MB 5.0 MB/s 
  Downloading pip-1.5.1.tar.gz (1.1 MB)
     |████████████████████████████████| 1.1 MB 9.0 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_2d4838b5fa01499a8af1cbcb3de5ec4a/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_2d4838b5fa01499a8af1cbcb3de5ec4a/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-aufzk98c
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_2d4838b5fa01499a8af1cbcb3de5ec4a/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/21/3f/d86a600c9b2f41a75caacf768a24130f343def97652de2345da15ef7911f/pip-1.5.1.tar.gz#sha256=e60e936fbc101d56668c6134c1f2b5b40fcbec8b4fc4ca7fc34842b6b4c5c130 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-1.5.tar.gz (898 kB)
     |████████████████████████████████| 898 kB 3.4 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_eb68c7324f964a33baa9d70f8442d890/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_eb68c7324f964a33baa9d70f8442d890/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-me5rw5ir
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_eb68c7324f964a33baa9d70f8442d890/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/4f/7d/e53bc80667378125a9e07d4929a61b0bd7128a1129dbe6f07bb3228652a3/pip-1.5.tar.gz#sha256=25f81d1a0e55d3b1709818dd57fdfb954b028f229f09bd69cb0bc80a8e03e048 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-1.4.1.tar.gz (445 kB)
     |████████████████████████████████| 445 kB 3.2 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_5f37b6ff422a4a84b782610378cc7ef9/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_5f37b6ff422a4a84b782610378cc7ef9/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-w022etke
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_5f37b6ff422a4a84b782610378cc7ef9/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/3f/f8/da390e0df72fb61d176b25a4b95262e3dcc14bda0ad25ac64d56db38b667/pip-1.4.1.tar.gz#sha256=4e7a06554711a624c35d0c646f63674b7f6bfc7f80221bf1eb1f631bd890d04e (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-1.4.tar.gz (443 kB)
     |████████████████████████████████| 443 kB 4.0 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_bd985ae48d25496fadfa88eb1bb4f152/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_bd985ae48d25496fadfa88eb1bb4f152/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-nz5m4c_z
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_bd985ae48d25496fadfa88eb1bb4f152/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/5f/d0/3b3958f6a58783bae44158b2c4c7827ae89abaecdd4bed12cff402620b9a/pip-1.4.tar.gz#sha256=1fd43cbf07d95ddcecbb795c97a1674b3ddb711bb4a67661284a5aa765aa1b97 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-1.3.1.tar.gz (247 kB)
     |████████████████████████████████| 247 kB 5.9 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_4979341c0d534bb89b2a6f4219be2c96/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_4979341c0d534bb89b2a6f4219be2c96/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-pyabq7r4
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_4979341c0d534bb89b2a6f4219be2c96/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/5b/ce/f5b98104f1c10d868936c25f7c597f492d4371aa9ad5fb61a94954ee7208/pip-1.3.1.tar.gz#sha256=145eaa5d1ea1b062663da1f3a97780d7edea4c63c68a37c463b1deedf7bb4957 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-1.3.tar.gz (247 kB)
     |████████████████████████████████| 247 kB 4.9 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_8421f0104a174a618683ca5733099a8a/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_8421f0104a174a618683ca5733099a8a/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-h_jtxhza
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_8421f0104a174a618683ca5733099a8a/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/00/45/69d4f2602b80550bfb26cfd2f62c2f05b3b5c7352705d3766cd1e5b27648/pip-1.3.tar.gz#sha256=d6a13c5be316cb21a0243047c7f163f47e88973ebccff8d32e63ca1bf4d9321c (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-1.2.1.tar.gz (102 kB)
     |████████████████████████████████| 102 kB 12.0 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_b7020c2f8f5a43f3ab8bb9ab43d6d3b7/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_b7020c2f8f5a43f3ab8bb9ab43d6d3b7/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-n321m5jx
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_b7020c2f8f5a43f3ab8bb9ab43d6d3b7/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/c3/a2/a63244da32afd9ce9a8ca1bd86e71610039adea8b8314046ebe5047527a6/pip-1.2.1.tar.gz#sha256=12a9302acfca62cdc7bc5d83386cac3e0581db61ac39acdb3a4e766a16b88eb1 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-1.2.tar.gz (94 kB)
     |████████████████████████████████| 94 kB 3.2 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_fb58736e85414831a557baba21400131/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_fb58736e85414831a557baba21400131/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-73zj_6wb
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_fb58736e85414831a557baba21400131/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/ba/c3/4e1f892f41aaa217fe0d1f827fa05928783349c69f3cc06fdd68e112678a/pip-1.2.tar.gz#sha256=2b168f1987403f1dc6996a1f22a6f6637b751b7ab6ff27e78380b8d6e70aa314 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-1.1.tar.gz (95 kB)
     |████████████████████████████████| 95 kB 3.1 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_48034874e37f4553b57c1aef66a1238d/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_48034874e37f4553b57c1aef66a1238d/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-440mwg0r
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_48034874e37f4553b57c1aef66a1238d/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/25/57/0d42cf5307d79913a082c5c4397d46f3793bc35e1138a694136d6e31be99/pip-1.1.tar.gz#sha256=993804bb947d18508acee02141281c77d27677f8c14eaa64d6287a1c53ef01c8 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-1.0.2.tar.gz (105 kB)
     |████████████████████████████████| 105 kB 6.0 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_92334b236a2a49329c6202f9d250041f/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_92334b236a2a49329c6202f9d250041f/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-ak8vbo2l
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_92334b236a2a49329c6202f9d250041f/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/16/90/5e6f80364d8a656f60681dfb7330298edef292d43e1499bcb3a4c71ff0b9/pip-1.0.2.tar.gz#sha256=a6ed9b36aac2f121c01a2c9e0307a9e4d9438d100a407db701ac65479a3335d2 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-1.0.1.tar.gz (104 kB)
     |████████████████████████████████| 104 kB 8.0 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_7f388ec9e83e43efa5be592b47ae3344/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_7f388ec9e83e43efa5be592b47ae3344/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-yzef5nu9
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_7f388ec9e83e43efa5be592b47ae3344/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/10/d9/f584e6107ef98ad7eaaaa5d0f756bfee12561fa6a4712ffdb7209e0e1fd4/pip-1.0.1.tar.gz#sha256=37d2f18213d3845d2038dd3686bc71fc12bb41ad66c945a8b0dfec2879f3497b (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-1.0.tar.gz (100 kB)
     |████████████████████████████████| 100 kB 7.5 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_94651fe8b41d42caaf5dcdba01fafeba/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_94651fe8b41d42caaf5dcdba01fafeba/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-whok2fzh
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_94651fe8b41d42caaf5dcdba01fafeba/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/24/33/6eb675fb6db7b71d69d6928b33dea61b8bf5cfe1e5649be70ec84ce2fc09/pip-1.0.tar.gz#sha256=34ba07e2d14ba86d5088ba896ac80bed845a9b276ab8acb279b8d99bc77fec8e (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-0.8.3.tar.gz (107 kB)
     |████████████████████████████████| 107 kB 5.3 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_7b51abf3a81a4c898db22684233d830e/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_7b51abf3a81a4c898db22684233d830e/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-osymrux0
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_7b51abf3a81a4c898db22684233d830e/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/f7/9a/943fc6d879ed7220bac2e7e53096bfe78abec88d77f2f516400e0129679e/pip-0.8.3.tar.gz#sha256=1be2e18edd38aa75b5e4ef38a99ec33ba9247177cfcb4a6d2d2b3e73430e3001 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-0.8.2.tar.gz (106 kB)
     |████████████████████████████████| 106 kB 6.7 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_d075dcac29014dce90b14dd0a182b8cf/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_d075dcac29014dce90b14dd0a182b8cf/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-xi7hrv6l
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_d075dcac29014dce90b14dd0a182b8cf/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/17/3e/0a98ab032991518741e7e712a719633e6ae160f51b3d3e855194530fd308/pip-0.8.2.tar.gz#sha256=f80a3549c048bc3bbcb47844826e9c7c6fcd87e77b92bef0d9e66d1b397c4962 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-0.8.1.tar.gz (105 kB)
     |████████████████████████████████| 105 kB 3.7 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_e7931dffeb0c4e1f8c146b0be572d438/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_e7931dffeb0c4e1f8c146b0be572d438/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-kgw6ilip
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_e7931dffeb0c4e1f8c146b0be572d438/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/5c/79/5e8381cc3078bae92166f2ba96de8355e8c181926505ba8882f7b099a500/pip-0.8.1.tar.gz#sha256=7176a87f35675f6468341212f3b959bb51d23ea66eb1c3692bf746c45c716fa2 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-0.8.tar.gz (98 kB)
     |████████████████████████████████| 98 kB 4.0 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_87431f283d1b4f589606932da60c2ed9/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_87431f283d1b4f589606932da60c2ed9/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-88y3w_b6
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_87431f283d1b4f589606932da60c2ed9/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/74/54/f785c327fb3d163560a879b36edae5c78ee07806be282c9d4807f6be7dd1/pip-0.8.tar.gz#sha256=9017e4484a212dd4e1a43dd9f039dd7fc8338d4eea1c339d5ae1c80726de5b0f (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-0.7.2.tar.gz (68 kB)
     |████████████████████████████████| 68 kB 5.4 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_943d8f9287af4540b5a84deda19988e3/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_943d8f9287af4540b5a84deda19988e3/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-7_i76eea
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_943d8f9287af4540b5a84deda19988e3/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/cd/a9/1debaa96bbc1005c1c8ad3b79fec58c198d35121546ea2e858ce0894268a/pip-0.7.2.tar.gz#sha256=98df2eb779358412bbbae75980171ae85deebc846d87e244d086520b1212da09 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-0.7.1.tar.gz (82 kB)
     |████████████████████████████████| 82 kB 1.4 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_e74c6d95627a42a5917b3945a4846fb5/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_e74c6d95627a42a5917b3945a4846fb5/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-b7hrd8ph
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_e74c6d95627a42a5917b3945a4846fb5/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/a5/63/11303863c2f5e9d9a15d89fcf7513a4b60987007d418862e0fb65c09fff7/pip-0.7.1.tar.gz#sha256=f54f05aa17edd0036de433c44892c8fedb1fd2871c97829838feb995818d24c3 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-0.7.tar.gz (68 kB)
     |████████████████████████████████| 68 kB 5.1 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_0d018498e95d41ecad4e1e39174ea03a/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_0d018498e95d41ecad4e1e39174ea03a/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-1iqwsaxc
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_0d018498e95d41ecad4e1e39174ea03a/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/ec/7a/6fe91ff0079ad0437830957c459d52f3923e516f5b453218f2a93d09a427/pip-0.7.tar.gz#sha256=ceaea0b9e494d893c8a191895301b79c1db33e41f14d3ad93e3d28a8b4e9bf27 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-0.6.3.tar.gz (71 kB)
     |████████████████████████████████| 71 kB 4.3 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_fd0bd8a47fcc4670ac4503dcc4630f91/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_fd0bd8a47fcc4670ac4503dcc4630f91/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-b3ysirdr
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_fd0bd8a47fcc4670ac4503dcc4630f91/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/3f/af/c4b9d49fb0f286996b28dbc0955c3ad359794697eb98e0e69863908070b0/pip-0.6.3.tar.gz#sha256=1a6df71eb29b98cba11bde6d6a0d8c6dd8b0518e74ceb71fb31ea4fbb42fd313 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-0.6.2.tar.gz (70 kB)
     |████████████████████████████████| 70 kB 7.7 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_940cec29832540f8bd2de59312c331ea/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_940cec29832540f8bd2de59312c331ea/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-84tlrh3n
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_940cec29832540f8bd2de59312c331ea/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/1c/c7/c0e1a9413c37828faf290f29a85a4d6034c145cc04bf1622ba8beb662ad8/pip-0.6.2.tar.gz#sha256=1c1a504d7e70d2c24246f95bd16e3d5fcec740fd144df69a407bf65a2ee67586 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-0.6.1.tar.gz (55 kB)
     |████████████████████████████████| 55 kB 6.2 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_4f65dd5fd8b3401e9578b33e6130af78/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_4f65dd5fd8b3401e9578b33e6130af78/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-01tye3hw
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_4f65dd5fd8b3401e9578b33e6130af78/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/91/cd/105f4d3c75d0ae18e12623acc96f42168aaba408dd6e43c4505aa21f8e37/pip-0.6.1.tar.gz#sha256=efe47e84ffeb0ea4804f9858b8a94bebd07f5452f907ebed36d03aed06a9f9ec (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-0.6.tar.gz (64 kB)
     |████████████████████████████████| 64 kB 2.1 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_d56c457129d045498d481af3460818ce/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_d56c457129d045498d481af3460818ce/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-lzhzp3y5
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_d56c457129d045498d481af3460818ce/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/db/e6/fdf7be8a17b032c533d3f91e91e2c63dd81d3627cbe4113248a00c2d39d8/pip-0.6.tar.gz#sha256=4cf47db6815b2f435d1f44e1f35ff04823043f6161f7df9aec71a123b0c47f0d (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-0.5.1.tar.gz (54 kB)
     |████████████████████████████████| 54 kB 5.8 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_a0c62cbdeeb64582b0cce66c549b8f95/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_a0c62cbdeeb64582b0cce66c549b8f95/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-321aqeyf
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_a0c62cbdeeb64582b0cce66c549b8f95/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/9a/aa/f536b6d14fe03343367da2ff44eee28f340ae650cd017ca088b6be13084a/pip-0.5.1.tar.gz#sha256=e27650538c41fe1007a41abd4cfd0f905b822622cbe1f8e7e09d1215af207694 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-0.5.tar.gz (53 kB)
     |████████████████████████████████| 53 kB 2.8 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_c17d5f253ce54d78a218406595f6e0b1/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_c17d5f253ce54d78a218406595f6e0b1/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-miiwikj_
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_c17d5f253ce54d78a218406595f6e0b1/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/8d/c7/f05c87812fa5d9562ecbc5f4f1fc1570444f53c81c834a7f662af406e3c1/pip-0.5.tar.gz#sha256=328d8412782f22568508a0d0c78a49c9920a82e44c8dfca49954fe525c152b2a (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-0.4.tar.gz (50 kB)
     |████████████████████████████████| 50 kB 10.4 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_2ae63e805d344d64b3ace8f7ad707d3e/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_2ae63e805d344d64b3ace8f7ad707d3e/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-a8ryegih
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_2ae63e805d344d64b3ace8f7ad707d3e/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/cf/c3/153571aaac6cf999f4bb09c019b1ff379b7b599ea833813a41c784eec995/pip-0.4.tar.gz#sha256=28fc67558874f71fddda7168f73595f1650523dce3bc5bf189713ecdfc1e456e (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-0.3.1.tar.gz (48 kB)
     |████████████████████████████████| 48 kB 1.9 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_c480f366f5bd4d159fb714ab317357d5/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_c480f366f5bd4d159fb714ab317357d5/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-jm4demye
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_c480f366f5bd4d159fb714ab317357d5/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/0a/bb/d087c9a1415f8726e683791c0b2943c53f2b76e69f527f2e2b2e9f9e7b5c/pip-0.3.1.tar.gz#sha256=34ce534f17065c78f980702928e988a6b6b2d8a9851aae5f1571a1feb9bb58d8 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-0.3.tar.gz (47 kB)
     |████████████████████████████████| 47 kB 3.8 MB/s 
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_34fa1fc11a5c4b3196e8d3da4085b779/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_34fa1fc11a5c4b3196e8d3da4085b779/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-2mj9vzju
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_34fa1fc11a5c4b3196e8d3da4085b779/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/17/05/f66144ef69b436d07f8eeeb28b7f77137f80de4bf60349ec6f0f9509e801/pip-0.3.tar.gz#sha256=183c72455cb7f8860ac1376f8c4f14d7f545aeab8ee7c22cd4caf79f35a2ed47 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-0.2.1.tar.gz (39 kB)
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_6f50c971490049dd985204fdf6d18800/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_6f50c971490049dd985204fdf6d18800/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-983etbc5
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_6f50c971490049dd985204fdf6d18800/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/18/ad/c0fe6cdfe1643a19ef027c7168572dac6283b80a384ddf21b75b921877da/pip-0.2.1.tar.gz#sha256=83522005c1266cc2de97e65072ff7554ac0f30ad369c3b02ff3a764b962048da (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
  Downloading pip-0.2.tar.gz (38 kB)
    ERROR: Command errored out with exit status 1:
     command: /usr/local/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_7b36e16e72f54e24a2dd4589f0903e8c/setup.py'"'"'; __file__='"'"'/private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_7b36e16e72f54e24a2dd4589f0903e8c/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-pip-egg-info-nmjx2bxf
         cwd: /private/var/folders/c6/v7hnmq453xb6p2dbz1gqc6rr0000gn/T/pip-install-_vpv9165/pip_7b36e16e72f54e24a2dd4589f0903e8c/
    Complete output (3 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ModuleNotFoundError: No module named 'setuptools'
    ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/3d/9d/1e313763bdfb6a48977b65829c6ce2a43eaae29ea2f907c8bbef024a7219/pip-0.2.tar.gz#sha256=88bb8d029e1bf4acd0e04d300104b7440086f94cc1ce1c5c3c31e3293aee1f81 (from https://pypi.org/simple/pip/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
Installing collected packages: pip
  Attempting uninstall: pip
    Found existing installation: pip 20.3.2
    Uninstalling pip-20.3.2:
      Successfully uninstalled pip-20.3.2
Successfully installed pip-20.3.3

Good suggestion to use pip==20.3.3 when upgrading.

@damnms
Copy link

damnms commented Mar 16, 2021

this still happens on the latest version, thats crazy

(venv) oli@lucy:~/Downloads/virtual_webcam_background-master$ pip install -r requirements.txt 
Collecting tf-nightly==2.5.0.dev20210316
  Using cached tf_nightly-2.5.0.dev20210316-cp39-cp39-manylinux2010_x86_64.whl (427.5 MB)
Collecting numpy==1.19.5
  Using cached numpy-1.19.5-cp39-cp39-manylinux2010_x86_64.whl (14.9 MB)
Collecting scipy==1.6.1
  Using cached scipy-1.6.1-cp39-cp39-manylinux1_x86_64.whl (27.3 MB)
Collecting pillow==8.1.2
  Using cached Pillow-8.1.2-cp39-cp39-manylinux1_x86_64.whl (2.2 MB)
Collecting pyyaml==5.4.1
  Using cached PyYAML-5.4.1-cp39-cp39-manylinux1_x86_64.whl (630 kB)
Collecting pyfakewebcam==0.1.0
  Using cached pyfakewebcam-0.1.0.tar.gz (12 kB)
Collecting opencv-python==4.5.1.48
  Using cached opencv_python-4.5.1.48-cp39-cp39-manylinux2014_x86_64.whl (50.4 MB)
Collecting tfjs-graph-converter==1.4.2
  Using cached tfjs_graph_converter-1.4.2-py3-none-any.whl (32 kB)
Collecting flatbuffers~=1.12.0
  Using cached flatbuffers-1.12-py2.py3-none-any.whl (15 kB)
Collecting termcolor~=1.1.0
  Using cached termcolor-1.1.0.tar.gz (3.9 kB)
Collecting typing-extensions~=3.7.4
  Using cached typing_extensions-3.7.4.3-py3-none-any.whl (22 kB)
Collecting opt-einsum~=3.3.0
  Using cached opt_einsum-3.3.0-py3-none-any.whl (65 kB)
Requirement already satisfied: six~=1.15.0 in /usr/lib/python3/dist-packages (from tf-nightly==2.5.0.dev20210316->-r requirements.txt (line 1)) (1.15.0)
Collecting astunparse~=1.6.3
  Using cached astunparse-1.6.3-py2.py3-none-any.whl (12 kB)
Collecting tb-nightly~=2.5.0.a
  Using cached tb_nightly-2.5.0a20210316-py3-none-any.whl (6.0 MB)
Collecting wrapt~=1.12.1
  Using cached wrapt-1.12.1.tar.gz (27 kB)
Collecting gast==0.4.0
  Using cached gast-0.4.0-py3-none-any.whl (9.8 kB)
Collecting google-pasta~=0.2
  Using cached google_pasta-0.2.0-py3-none-any.whl (57 kB)
Collecting wheel~=0.35
  Using cached wheel-0.36.2-py2.py3-none-any.whl (35 kB)
Collecting keras-preprocessing~=1.1.2
  Using cached Keras_Preprocessing-1.1.2-py2.py3-none-any.whl (42 kB)
Collecting h5py~=3.1.0
  Using cached h5py-3.1.0-cp39-cp39-manylinux1_x86_64.whl (4.4 MB)
Collecting grpcio~=1.34.0
  Using cached grpcio-1.34.1-cp39-cp39-manylinux2014_x86_64.whl (4.0 MB)
Collecting protobuf>=3.9.2
  Using cached protobuf-3.15.6-cp39-cp39-manylinux1_x86_64.whl (1.0 MB)
Collecting absl-py~=0.10
  Using cached absl_py-0.12.0-py3-none-any.whl (129 kB)
Collecting keras-nightly~=2.5.0.dev
  Using cached keras_nightly-2.5.0.dev2021031600-py2.py3-none-any.whl (1.3 MB)
Collecting tf-estimator-nightly~=2.5.0.dev
  Using cached tf_estimator_nightly-2.5.0.dev2021031601-py2.py3-none-any.whl (462 kB)
Collecting tensorflowjs>=1.5.2
  Using cached tensorflowjs-3.3.0-py3-none-any.whl (63 kB)
Collecting werkzeug>=0.11.15
  Using cached Werkzeug-1.0.1-py2.py3-none-any.whl (298 kB)
Collecting google-auth-oauthlib<0.5,>=0.4.1
  Using cached google_auth_oauthlib-0.4.3-py2.py3-none-any.whl (18 kB)
Collecting google-auth<2,>=1.6.3
  Using cached google_auth-1.27.1-py2.py3-none-any.whl (136 kB)
Requirement already satisfied: requests<3,>=2.21.0 in /usr/lib/python3/dist-packages (from tb-nightly~=2.5.0.a->tf-nightly==2.5.0.dev20210316->-r requirements.txt (line 1)) (2.25.1)
Requirement already satisfied: setuptools>=41.0.0 in ./venv/lib/python3.9/site-packages (from tb-nightly~=2.5.0.a->tf-nightly==2.5.0.dev20210316->-r requirements.txt (line 1)) (44.1.1)
Collecting tensorboard-plugin-wit>=1.6.0
  Using cached tensorboard_plugin_wit-1.8.0-py3-none-any.whl (781 kB)
Collecting markdown>=2.6.8
  Using cached Markdown-3.3.4-py3-none-any.whl (97 kB)
Collecting tensorboard-data-server<0.5.0,>=0.4.0
  Using cached tensorboard_data_server-0.4.0-py3-none-manylinux2010_x86_64.whl (3.9 MB)
Collecting cachetools<5.0,>=2.0.0
  Using cached cachetools-4.2.1-py3-none-any.whl (12 kB)
Collecting pyasn1-modules>=0.2.1
  Using cached pyasn1_modules-0.2.8-py2.py3-none-any.whl (155 kB)
Collecting rsa<5,>=3.1.4
  Using cached rsa-4.7.2-py3-none-any.whl (34 kB)
Collecting requests-oauthlib>=0.7.0
  Using cached requests_oauthlib-1.3.0-py2.py3-none-any.whl (23 kB)
Collecting pyasn1<0.5.0,>=0.4.6
  Using cached pyasn1-0.4.8-py2.py3-none-any.whl (77 kB)
Collecting oauthlib>=3.0.0
  Using cached oauthlib-3.1.0-py2.py3-none-any.whl (147 kB)
Collecting tensorflow-hub<0.10,>=0.7.0
  Using cached tensorflow_hub-0.9.0-py2.py3-none-any.whl (103 kB)
Collecting tensorflowjs>=1.5.2
  Using cached tensorflowjs-3.2.0-py3-none-any.whl (63 kB)
  Using cached tensorflowjs-3.1.0-py3-none-any.whl (63 kB)
  Using cached tensorflowjs-3.0.0-py3-none-any.whl (63 kB)
  Using cached tensorflowjs-2.8.5-py3-none-any.whl (63 kB)
  Using cached tensorflowjs-2.8.4-py3-none-any.whl (63 kB)
  Using cached tensorflowjs-2.8.3-py3-none-any.whl (63 kB)
  Using cached tensorflowjs-2.8.2-py3-none-any.whl (63 kB)
  Using cached tensorflowjs-2.8.1-py3-none-any.whl (63 kB)
  Using cached tensorflowjs-2.8.0-py3-none-any.whl (63 kB)
  Using cached tensorflowjs-2.7.0-py3-none-any.whl (62 kB)
  Using cached tensorflowjs-2.6.0-py3-none-any.whl (61 kB)
  Using cached tensorflowjs-2.5.0-py3-none-any.whl (61 kB)
  Using cached tensorflowjs-2.4.0-py3-none-any.whl (61 kB)
Collecting tensorflow-hub==0.7.0
  Using cached tensorflow_hub-0.7.0-py2.py3-none-any.whl (89 kB)
Collecting tensorflowjs>=1.5.2
  Using cached tensorflowjs-2.3.0-py3-none-any.whl (61 kB)
  Using cached tensorflowjs-2.1.0-py3-none-any.whl (60 kB)
  Using cached tensorflowjs-2.0.1.post1-py3-none-any.whl (60 kB)
  Using cached tensorflowjs-2.0.1-py3-none-any.whl (60 kB)
  Using cached tensorflowjs-2.0.0-py3-none-any.whl (57 kB)
  Using cached tensorflowjs-1.7.4.post1-py3-none-any.whl (57 kB)
  Using cached tensorflowjs-1.7.4-py3-none-any.whl (57 kB)
  Using cached tensorflowjs-1.7.3-py3-none-any.whl (57 kB)
  Using cached tensorflowjs-1.7.2-py3-none-any.whl (57 kB)
  Using cached tensorflowjs-1.6.0-py3-none-any.whl (57 kB)
  Using cached tensorflowjs-1.5.2-py3-none-any.whl (56 kB)
INFO: pip is looking at multiple versions of tensorboard-plugin-wit to determine which version is compatible with other requirements. This could take a while.
Collecting tensorboard-plugin-wit>=1.6.0
  Using cached tensorboard_plugin_wit-1.7.0-py3-none-any.whl (779 kB)
  Using cached tensorboard_plugin_wit-1.6.0.post3-py3-none-any.whl (777 kB)
  Using cached tensorboard_plugin_wit-1.6.0.post2-py3-none-any.whl (775 kB)
INFO: pip is looking at multiple versions of tensorboard-data-server to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of rsa to determine which version is compatible with other requirements. This could take a while.
Collecting rsa<5,>=3.1.4
  Using cached rsa-4.7.1-py3-none-any.whl (36 kB)
  Using cached rsa-4.7-py3-none-any.whl (34 kB)
  Using cached rsa-4.6-py3-none-any.whl (47 kB)
  Using cached rsa-4.5-py2.py3-none-any.whl (36 kB)
  Using cached rsa-4.4.1-py2.py3-none-any.whl (33 kB)
  Using cached rsa-4.3-py2.py3-none-any.whl (36 kB)
  Using cached rsa-4.2.tar.gz (46 kB)
  Using cached rsa-4.1-py3-none-any.whl (32 kB)
  Using cached rsa-4.0-py2.py3-none-any.whl (38 kB)
  Using cached rsa-3.4.2-py2.py3-none-any.whl (46 kB)
  Using cached rsa-3.4.1-py2.py3-none-any.whl (46 kB)
  Using cached rsa-3.4-py2.py3-none-any.whl (46 kB)
  Using cached rsa-3.3-py2.py3-none-any.whl (44 kB)
  Using cached rsa-3.2.3-py2.py3-none-any.whl (44 kB)
  Using cached rsa-3.2.2-py2.py3-none-any.whl (44 kB)
  Using cached rsa-3.2-py2.py3-none-any.whl (43 kB)
  Using cached rsa-3.1.4.tar.gz (36 kB)
INFO: pip is looking at multiple versions of tensorboard-plugin-wit to determine which version is compatible with other requirements. This could take a while.
INFO: This is taking longer than usual. You might need to provide the dependency resolver with stricter constraints to reduce runtime. If you want to abort this run, you can press Ctrl + C to do so. To improve how pip performs, tell us what happened here: https://pip.pypa.io/surveys/backtracking
INFO: pip is looking at multiple versions of tensorboard-data-server to determine which version is compatible with other requirements. This could take a while.
INFO: pip is looking at multiple versions of rsa to determine which version is compatible with other requirements. This could take a while.
INFO: This is taking longer than usual. You might need to provide the dependency resolver with stricter constraints to reduce runtime. If you want to abort this run, you can press Ctrl + C to do so. To improve how pip performs, tell us what happened here: https://pip.pypa.io/surveys/backtracking
INFO: This is taking longer than usual. You might need to provide the dependency resolver with stricter constraints to reduce runtime. If you want to abort this run, you can press Ctrl + C to do so. To improve how pip performs, tell us what happened here: https://pip.pypa.io/surveys/backtracking
INFO: pip is looking at multiple versions of oauthlib to determine which version is compatible with other requirements. This could take a while.
Collecting oauthlib>=3.0.0
  Using cached oauthlib-3.0.2-py2.py3-none-any.whl (143 kB)
  Using cached oauthlib-3.0.1-py2.py3-none-any.whl (142 kB)
  Using cached oauthlib-3.0.0-py2.py3-none-any.whl (142 kB)
INFO: pip is looking at multiple versions of requests-oauthlib to determine which version is compatible with other requirements. This could take a while.
Collecting requests-oauthlib>=0.7.0
  Using cached requests_oauthlib-1.2.0-py2.py3-none-any.whl (22 kB)
  Using cached requests_oauthlib-1.1.0-py2.py3-none-any.whl (21 kB)
  Using cached requests_oauthlib-1.0.0-py2.py3-none-any.whl (21 kB)
  Using cached requests_oauthlib-0.8.0-py2.py3-none-any.whl (23 kB)
  Using cached requests_oauthlib-0.7.0-py2.py3-none-any.whl (22 kB)
INFO: pip is looking at multiple versions of oauthlib to determine which version is compatible with other requirements. This could take a while.
Collecting oauthlib<3.0.0,>=2.1.0
  Using cached oauthlib-2.1.0-py2.py3-none-any.whl (121 kB)
Collecting oauthlib>=0.6.2
  Using cached oauthlib-2.0.7-py2.py3-none-any.whl (124 kB)
  Using cached oauthlib-2.0.6.tar.gz (127 kB)
  Using cached oauthlib-2.0.5.tar.gz (129 kB)
  Using cached oauthlib-2.0.4.tar.gz (127 kB)
  Using cached oauthlib-2.0.3.tar.gz (127 kB)
  Using cached oauthlib-2.0.2.tar.gz (125 kB)
  Using cached oauthlib-2.0.1.tar.gz (122 kB)
  Using cached oauthlib-2.0.0.tar.gz (122 kB)
  Using cached oauthlib-1.1.2.tar.gz (111 kB)
  Using cached oauthlib-1.1.1.tar.gz (108 kB)
  Using cached oauthlib-1.1.0-1.tar.gz (106 kB)
WARNING: Discarding https://files.pythonhosted.org/packages/e5/54/4f96c51b171cf3a64a04b8c5167268803205bc5943b5cdf70bd770727b88/oauthlib-1.1.0-1.tar.gz#sha256=0f786c5573248a38efa86c48c59c0c93140ac836ab2a246aeefd8f9039e999ba (from https://pypi.org/simple/oauthlib/). Requested oauthlib>=0.6.2 from https://files.pythonhosted.org/packages/e5/54/4f96c51b171cf3a64a04b8c5167268803205bc5943b5cdf70bd770727b88/oauthlib-1.1.0-1.tar.gz#sha256=0f786c5573248a38efa86c48c59c0c93140ac836ab2a246aeefd8f9039e999ba (from requests-oauthlib>=0.7.0->google-auth-oauthlib<0.5,>=0.4.1->tb-nightly~=2.5.0.a->tf-nightly==2.5.0.dev20210316->-r requirements.txt (line 1)) has inconsistent version: filename has '1.1.0.post1', but metadata has '1.1.0'
  Using cached oauthlib-1.0.3.tar.gz (109 kB)
  Using cached oauthlib-1.0.2.tar.gz (108 kB)
  Using cached oauthlib-1.0.1.tar.gz (108 kB)
  Using cached oauthlib-1.0.0.tar.gz (108 kB)
  Using cached oauthlib-0.7.2.tar.gz (106 kB)
  Using cached oauthlib-0.7.1.tar.gz (106 kB)
  Using cached oauthlib-0.7.0.tar.gz (105 kB)
  Using cached oauthlib-0.6.3.tar.gz (100 kB)
  Using cached oauthlib-0.6.2.tar.gz (100 kB)
oli@lucy:~/Downloads/virtual_webcam_background-master$ cat requirements.txt 
tf-nightly==2.5.0.dev20210316
numpy==1.19.5
scipy==1.6.1
pillow==8.1.2
pyyaml==5.4.1
pyfakewebcam==0.1.0
opencv-python==4.5.1.48
tfjs-graph-converter==1.4.2

@bl-ue
Copy link

bl-ue commented Mar 16, 2021

What's the output of pip -V, @damnms?

@bl-ue
Copy link

bl-ue commented Mar 16, 2021

Try getting the latest version by running pip install pip==21.0.1

@damnms
Copy link

damnms commented Mar 16, 2021

i tried 21.0.1 and 20.3.3, no change, the same behaviour

@damnms
Copy link

damnms commented Mar 16, 2021

(venv) oli@lucy:~/Downloads/virtual_webcam_background-master$ pip -V
pip 20.3.3 from /usr/local/lib/python3.9/dist-packages/pip (python 3.9)

@bl-ue
Copy link

bl-ue commented Mar 16, 2021

Yep, I confirm it's back. It's happening to me as well as @damnms:

$ pip --version
pip 21.0.1 from /usr/local/lib/python3.9/site-packages/pip (python 3.9)
$ pip cache purge
Files removed: 4215
$ pip install tfjs-graph-converter==1.4.2
Collecting tfjs-graph-converter==1.4.2
  Downloading tfjs_graph_converter-1.4.2-py3-none-any.whl (32 kB)
Collecting tensorflowjs>=1.5.2
  Downloading tensorflowjs-3.3.0-py3-none-any.whl (63 kB)
     |████████████████████████████████| 63 kB 1.3 MB/s
Collecting h5py<3,>=2.8.0
  Downloading h5py-2.10.0.tar.gz (301 kB)
     |████████████████████████████████| 301 kB 4.4 MB/s
Collecting tensorflowjs>=1.5.2
  Downloading tensorflowjs-3.2.0-py3-none-any.whl (63 kB)
     |████████████████████████████████| 63 kB 2.1 MB/s
  Downloading tensorflowjs-3.1.0-py3-none-any.whl (63 kB)
     |████████████████████████████████| 63 kB 5.2 MB/s
  Downloading tensorflowjs-3.0.0-py3-none-any.whl (63 kB)
     |████████████████████████████████| 63 kB 3.6 MB/s
  Downloading tensorflowjs-2.8.5-py3-none-any.whl (63 kB)
     |████████████████████████████████| 63 kB 5.3 MB/s
  Downloading tensorflowjs-2.8.4-py3-none-any.whl (63 kB)
     |████████████████████████████████| 63 kB 4.4 MB/s
  Downloading tensorflowjs-2.8.3-py3-none-any.whl (63 kB)
     |████████████████████████████████| 63 kB 4.7 MB/s
  Downloading tensorflowjs-2.8.2-py3-none-any.whl (63 kB)
     |████████████████████████████████| 63 kB 5.0 MB/s
  Downloading tensorflowjs-2.8.1-py3-none-any.whl (63 kB)
     |████████████████████████████████| 63 kB 4.4 MB/s
  Downloading tensorflowjs-2.8.0-py3-none-any.whl (63 kB)
     |████████████████████████████████| 63 kB 9.5 MB/s
  Downloading tensorflowjs-2.7.0-py3-none-any.whl (62 kB)
     |████████████████████████████████| 62 kB 2.9 MB/s
  Downloading tensorflowjs-2.6.0-py3-none-any.whl (61 kB)
     |████████████████████████████████| 61 kB 1.1 MB/s
  Downloading tensorflowjs-2.5.0-py3-none-any.whl (61 kB)
     |████████████████████████████████| 61 kB 923 kB/s
  Downloading tensorflowjs-2.4.0-py3-none-any.whl (61 kB)
     |████████████████████████████████| 61 kB 8.8 MB/s
Collecting numpy<1.19.0,>=1.16.4
  Downloading numpy-1.18.5.zip (5.4 MB)
     |████████████████████████████████| 5.4 MB 28.2 MB/s
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... error
.......

@pradyunsg @uranusjr I though we had this fixed?

@uranusjr
Copy link
Member

The key word of this issue is “eagerly”. At the time, pip would download all versions of a package, only to find that it does not need it after all. That was fixed. In your scenario, pip downloads multiple versions because the versions it downloaded conflict with other packages you specified, which is called backtracking and is a feature. The versions need to be downloaded to detect the conflicts. You are misidentifying the issue.

@bersbersbers
Copy link

bersbersbers commented Mar 17, 2021

@uranusjr I think what would greatly help to identify such cases is if pip explained why it is downloading (and discarding) multiple versions then. Even in the most verbose mode, I cannot find any such information, and it's filling hundreds of terminal pages.

Note that I cannot current repro this problem with pip install tfjs-graph-converter==1.4.2, but pip install tfjs-graph-converter==1.4.2 tf-nightly==2.5.0.dev20210316 still does. And so I would expect

pip install -v -v -v tfjs-graph-converter==1.4.2 tf-nightly==2.5.0.dev20210316 2>&1 | grep "2\.8\.3"

to tell me why tensorflowjs-2.8.3 is considered, but not used. By contrast, everything I get is

  Skipping link: none of the wheel's tags match: py2-none-any: https://files.pythonhosted.org/packages/a0/ee/22cefe5a3f6f7e716b88bcd0bbf781d1674a2a61d940fadecfcda6c0c847/tensorflowjs-2.8.3-py2-none-any.whl#sha256=fd186d646dced1f3e21157614ff1f7926c09f019ccf00b5430b873a668991eaf (from https://pypi.org/simple/tensorflowjs/)
  Found link https://files.pythonhosted.org/packages/5e/74/60313e6bdcf5d1878ad36a127af073c7b2e2df34abc8030ca7eb1e9a72e7/tensorflowjs-2.8.3-py3-none-any.whl#sha256=fbea42c82d1c8383c546a1ac88b046734585e1e2ee57de18fe69a84bf9a315fe (from https://pypi.org/simple/tensorflowjs/), version: 2.8.3
  Looking up "https://files.pythonhosted.org/packages/5e/74/60313e6bdcf5d1878ad36a127af073c7b2e2df34abc8030ca7eb1e9a72e7/tensorflowjs-2.8.3-py3-none-any.whl" in the cache
  Using cached tensorflowjs-2.8.3-py3-none-any.whl (63 kB)
  Added tensorflowjs>=1.5.2 from https://files.pythonhosted.org/packages/5e/74/60313e6bdcf5d1878ad36a127af073c7b2e2df34abc8030ca7eb1e9a72e7/tensorflowjs-2.8.3-py3-none-any.whl#sha256=fbea42c82d1c8383c546a1ac88b046734585e1e2ee57de18fe69a84bf9a315fe (from tfjs-graph-converter==1.4.2) to build tracker '/tmp/pip-req-tracker-bztc8ovx'
  Removed tensorflowjs>=1.5.2 from https://files.pythonhosted.org/packages/5e/74/60313e6bdcf5d1878ad36a127af073c7b2e2df34abc8030ca7eb1e9a72e7/tensorflowjs-2.8.3-py3-none-any.whl#sha256=fbea42c82d1c8383c546a1ac88b046734585e1e2ee57de18fe69a84bf9a315fe (from tfjs-graph-converter==1.4.2) from build tracker '/tmp/pip-req-tracker-bztc8ovx'

Couldn't it say something like

I considered tensorflowjs-2.8.3 but cannot use it because it conflicts with requirement x>=a.b (from y==d.e.f)?

Here's my output of pip install tfjs-graph-converter==1.4.2 tf-nightly==2.5.0.dev20210316:

Collecting tfjs-graph-converter==1.4.2
  Using cached tfjs_graph_converter-1.4.2-py3-none-any.whl (32 kB)
Collecting tf-nightly==2.5.0.dev20210316
  Using cached tf_nightly-2.5.0.dev20210316-cp38-cp38-manylinux2010_x86_64.whl (427.5 MB)
Collecting keras-nightly~=2.5.0.dev
  Using cached keras_nightly-2.5.0.dev2021031600-py2.py3-none-any.whl (1.3 MB)
Collecting flatbuffers~=1.12.0
  Using cached flatbuffers-1.12-py2.py3-none-any.whl (15 kB)
Collecting termcolor~=1.1.0
  Using cached termcolor-1.1.0.tar.gz (3.9 kB)
Collecting absl-py~=0.10
  Using cached absl_py-0.12.0-py3-none-any.whl (129 kB)
Collecting typing-extensions~=3.7.4
  Using cached typing_extensions-3.7.4.3-py3-none-any.whl (22 kB)
Collecting six~=1.15.0
  Using cached six-1.15.0-py2.py3-none-any.whl (10 kB)
Collecting wrapt~=1.12.1
  Using cached wrapt-1.12.1.tar.gz (27 kB)
Collecting keras-preprocessing~=1.1.2
  Using cached Keras_Preprocessing-1.1.2-py2.py3-none-any.whl (42 kB)
Collecting tf-estimator-nightly~=2.5.0.dev
  Using cached tf_estimator_nightly-2.5.0.dev2021031601-py2.py3-none-any.whl (462 kB)
Requirement already satisfied: wheel~=0.35 in /data2/bers/opt/pyenv/versions/3.8.8/envs/temp/lib/python3.8/site-packages (from tf-nightly==2.5.0.dev20210316) (0.36.2)
Collecting astunparse~=1.6.3
  Using cached astunparse-1.6.3-py2.py3-none-any.whl (12 kB)
Collecting numpy~=1.19.2
  Using cached numpy-1.19.5-cp38-cp38-manylinux2010_x86_64.whl (14.9 MB)
Collecting gast==0.4.0
  Using cached gast-0.4.0-py3-none-any.whl (9.8 kB)
Collecting grpcio~=1.34.0
  Using cached grpcio-1.34.1-cp38-cp38-manylinux2014_x86_64.whl (4.0 MB)
Collecting protobuf>=3.9.2
  Using cached protobuf-3.15.6-cp38-cp38-manylinux1_x86_64.whl (1.0 MB)
Collecting tb-nightly~=2.5.0.a
  Using cached tb_nightly-2.5.0a20210316-py3-none-any.whl (6.0 MB)
Collecting h5py~=3.1.0
  Using cached h5py-3.1.0-cp38-cp38-manylinux1_x86_64.whl (4.4 MB)
Collecting opt-einsum~=3.3.0
  Using cached opt_einsum-3.3.0-py3-none-any.whl (65 kB)
Collecting google-pasta~=0.2
  Using cached google_pasta-0.2.0-py3-none-any.whl (57 kB)
Collecting tensorflowjs>=1.5.2
  Using cached tensorflowjs-3.3.0-py3-none-any.whl (63 kB)
Requirement already satisfied: setuptools>=41.0.0 in /data2/bers/opt/pyenv/versions/3.8.8/envs/temp/lib/python3.8/site-packages (from tb-nightly~=2.5.0.a->tf-nightly==2.5.0.dev20210316) (49.2.1)
Collecting requests<3,>=2.21.0
  Using cached requests-2.25.1-py2.py3-none-any.whl (61 kB)
Collecting markdown>=2.6.8
  Using cached Markdown-3.3.4-py3-none-any.whl (97 kB)
Collecting google-auth<2,>=1.6.3
  Using cached google_auth-1.28.0-py2.py3-none-any.whl (136 kB)
Collecting tensorboard-data-server<0.5.0,>=0.4.0
  Using cached tensorboard_data_server-0.4.0-py3-none-manylinux2010_x86_64.whl (3.9 MB)
Collecting tensorboard-plugin-wit>=1.6.0
  Using cached tensorboard_plugin_wit-1.8.0-py3-none-any.whl (781 kB)
Collecting werkzeug>=0.11.15
  Using cached Werkzeug-1.0.1-py2.py3-none-any.whl (298 kB)
Collecting google-auth-oauthlib<0.5,>=0.4.1
  Using cached google_auth_oauthlib-0.4.3-py2.py3-none-any.whl (18 kB)
Collecting pyasn1-modules>=0.2.1
  Using cached pyasn1_modules-0.2.8-py2.py3-none-any.whl (155 kB)
Collecting cachetools<5.0,>=2.0.0
  Using cached cachetools-4.2.1-py3-none-any.whl (12 kB)
Collecting rsa<5,>=3.1.4
  Using cached rsa-4.7.2-py3-none-any.whl (34 kB)
Collecting requests-oauthlib>=0.7.0
  Using cached requests_oauthlib-1.3.0-py2.py3-none-any.whl (23 kB)
Collecting pyasn1<0.5.0,>=0.4.6
  Using cached pyasn1-0.4.8-py2.py3-none-any.whl (77 kB)
Collecting certifi>=2017.4.17
  Using cached certifi-2020.12.5-py2.py3-none-any.whl (147 kB)
Collecting idna<3,>=2.5
  Using cached idna-2.10-py2.py3-none-any.whl (58 kB)
Collecting urllib3<1.27,>=1.21.1
  Using cached urllib3-1.26.4-py2.py3-none-any.whl (153 kB)
Collecting chardet<5,>=3.0.2
  Using cached chardet-4.0.0-py2.py3-none-any.whl (178 kB)
Collecting oauthlib>=3.0.0
  Using cached oauthlib-3.1.0-py2.py3-none-any.whl (147 kB)
Collecting tensorflow-hub<0.10,>=0.7.0
  Using cached tensorflow_hub-0.9.0-py2.py3-none-any.whl (103 kB)
Collecting tensorflowjs>=1.5.2
  Using cached tensorflowjs-3.2.0-py3-none-any.whl (63 kB)
  Using cached tensorflowjs-3.1.0-py3-none-any.whl (63 kB)
  Using cached tensorflowjs-3.0.0-py3-none-any.whl (63 kB)
  Using cached tensorflowjs-2.8.5-py3-none-any.whl (63 kB)
  Using cached tensorflowjs-2.8.4-py3-none-any.whl (63 kB)
  Using cached tensorflowjs-2.8.3-py3-none-any.whl (63 kB)
  Using cached tensorflowjs-2.8.2-py3-none-any.whl (63 kB)
  Using cached tensorflowjs-2.8.1-py3-none-any.whl (63 kB)
  Using cached tensorflowjs-2.8.0-py3-none-any.whl (63 kB)
  Using cached tensorflowjs-2.7.0-py3-none-any.whl (62 kB)
  Using cached tensorflowjs-2.6.0-py3-none-any.whl (61 kB)
  Using cached tensorflowjs-2.5.0-py3-none-any.whl (61 kB)
  Using cached tensorflowjs-2.4.0-py3-none-any.whl (61 kB)
  Using cached tensorflowjs-2.3.0-py3-none-any.whl (61 kB)
  Using cached tensorflowjs-2.1.0-py3-none-any.whl (60 kB)
  Using cached tensorflowjs-2.0.1.post1-py3-none-any.whl (60 kB)
  Using cached tensorflowjs-2.0.1-py3-none-any.whl (60 kB)
Collecting PyInquirer==1.0.3
  Using cached PyInquirer-1.0.3.tar.gz (27 kB)
Collecting tensorflow-cpu>=2.1.0<3
  Using cached tensorflow_cpu-2.4.1-cp38-cp38-manylinux2010_x86_64.whl (144.2 MB)
Collecting tensorflow-hub==0.7.0
  Using cached tensorflow_hub-0.7.0-py2.py3-none-any.whl (89 kB)
Collecting prompt_toolkit==1.0.14
  Using cached prompt_toolkit-1.0.14-py3-none-any.whl (248 kB)
Collecting Pygments>=2.2.0
  Using cached Pygments-2.8.1-py3-none-any.whl (983 kB)
Collecting regex>=2016.11.21
  Using cached regex-2020.11.13-cp38-cp38-manylinux2014_x86_64.whl (738 kB)
Collecting wcwidth
  Using cached wcwidth-0.2.5-py2.py3-none-any.whl (30 kB)
Collecting tensorflow-estimator<2.5.0,>=2.4.0
  Using cached tensorflow_estimator-2.4.0-py2.py3-none-any.whl (462 kB)
Collecting tensorboard~=2.4
  Using cached tensorboard-2.4.1-py3-none-any.whl (10.6 MB)
Collecting tensorflow-cpu>=2.1.0<3
  Using cached tensorflow_cpu-2.4.0-cp38-cp38-manylinux2010_x86_64.whl (144.6 MB)
  Using cached tensorflow_cpu-2.4.0rc4-cp38-cp38-manylinux2010_x86_64.whl (144.5 MB)
  Using cached tensorflow_cpu-2.4.0rc3-cp38-cp38-manylinux2010_x86_64.whl (144.5 MB)
Collecting protobuf>=3.9.2
  Using cached protobuf-3.13.0-cp38-cp38-manylinux1_x86_64.whl (1.3 MB)
Collecting tensorflow-cpu>=2.1.0<3
  Using cached tensorflow_cpu-2.4.0rc2-cp38-cp38-manylinux2010_x86_64.whl (144.5 MB)
  Using cached tensorflow_cpu-2.4.0rc1-cp38-cp38-manylinux2010_x86_64.whl (144.5 MB)
  Using cached tensorflow_cpu-2.4.0rc0-cp38-cp38-manylinux2010_x86_64.whl (144.5 MB)
Collecting tensorflow-estimator~=2.3.0
  Using cached tensorflow_estimator-2.3.0-py2.py3-none-any.whl (459 kB)
Collecting tensorflow-cpu>=2.1.0<3
  Using cached tensorflow_cpu-2.3.2-cp38-cp38-manylinux2010_x86_64.whl (137.5 MB)
  Using cached tensorflow_cpu-2.3.1-cp38-cp38-manylinux2010_x86_64.whl (137.4 MB)
  Using cached tensorflow_cpu-2.3.0-cp38-cp38-manylinux2010_x86_64.whl (137.4 MB)
  Using cached tensorflow_cpu-2.3.0rc2-cp38-cp38-manylinux2010_x86_64.whl (137.4 MB)
Collecting tensorboard<2.3.0,>=2.2.0
  Using cached tensorboard-2.2.2-py3-none-any.whl (3.0 MB)
Collecting tensorflow-cpu>=2.1.0<3
  Using cached tensorflow_cpu-2.3.0rc1-cp38-cp38-manylinux2010_x86_64.whl (137.4 MB)
  Using cached tensorflow_cpu-2.3.0rc0-cp38-cp38-manylinux2010_x86_64.whl (137.4 MB)
  Using cached tensorflow_cpu-2.2.2-cp38-cp38-manylinux2010_x86_64.whl (144.5 MB)
Collecting tensorflow-estimator<2.3.0,>=2.2.0
  Using cached tensorflow_estimator-2.2.0-py2.py3-none-any.whl (454 kB)
Collecting tensorflow-cpu>=2.1.0<3
  Using cached tensorflow_cpu-2.2.1-cp38-cp38-manylinux2010_x86_64.whl (144.5 MB)
  Using cached tensorflow_cpu-2.2.0-cp38-cp38-manylinux2010_x86_64.whl (144.5 MB)
Collecting scipy==1.4.1
  Using cached scipy-1.4.1-cp38-cp38-manylinux1_x86_64.whl (26.0 MB)
Collecting tensorflow-cpu>=2.1.0<3
  Using cached tensorflow_cpu-2.2.0rc4-cp38-cp38-manylinux2010_x86_64.whl (144.5 MB)
  Using cached tensorflow_cpu-2.2.0rc3-cp38-cp38-manylinux2010_x86_64.whl (144.5 MB)
  Using cached tensorflow_cpu-2.2.0rc2-cp38-cp38-manylinux2010_x86_64.whl (144.5 MB)
  Using cached tensorflow_cpu-2.2.0rc1-cp38-cp38-manylinux2010_x86_64.whl (144.4 MB)
INFO: pip is looking at multiple versions of regex to determine which version is compatible with other requirements. This could take a while.
Collecting regex>=2016.11.21
  Using cached regex-2020.11.11-cp38-cp38-manylinux2014_x86_64.whl (734 kB)
  Using cached regex-2020.10.28-cp38-cp38-manylinux2014_x86_64.whl (736 kB)
  Using cached regex-2020.10.23-cp38-cp38-manylinux2010_x86_64.whl (675 kB)
  Using cached regex-2020.10.22-cp38-cp38-manylinux2010_x86_64.whl (675 kB)
  Using cached regex-2020.10.15-cp38-cp38-manylinux2010_x86_64.whl (675 kB)
  Using cached regex-2020.10.11-cp38-cp38-manylinux2010_x86_64.whl (675 kB)
  Using cached regex-2020.9.27-cp38-cp38-manylinux2010_x86_64.whl (675 kB)
  Using cached regex-2020.7.14-cp38-cp38-manylinux2010_x86_64.whl (672 kB)
  Using cached regex-2020.6.8-cp38-cp38-manylinux2010_x86_64.whl (673 kB)
  Using cached regex-2020.6.7-cp38-cp38-manylinux2010_x86_64.whl (689 kB)
  Using cached regex-2020.5.14-cp38-cp38-manylinux2010_x86_64.whl (689 kB)
  Using cached regex-2020.5.13-cp38-cp38-manylinux2010_x86_64.whl (689 kB)
  Using cached regex-2020.5.7-cp38-cp38-manylinux2010_x86_64.whl (689 kB)
  Using cached regex-2020.4.4-cp38-cp38-manylinux2010_x86_64.whl (691 kB)
  Using cached regex-2020.2.20-cp38-cp38-manylinux2010_x86_64.whl (705 kB)
  Using cached regex-2020.2.18-cp38-cp38-manylinux2010_x86_64.whl (705 kB)
  Using cached regex-2020.1.8-cp38-cp38-manylinux2010_x86_64.whl (705 kB)
  Using cached regex-2020.1.7-cp38-cp38-manylinux2010_x86_64.whl (705 kB)
  Using cached regex-2019.12.20-cp38-cp38-manylinux2010_x86_64.whl (705 kB)
  Using cached regex-2019.12.19-cp38-cp38-manylinux2010_x86_64.whl (704 kB)
  Using cached regex-2019.12.18-cp38-cp38-manylinux2010_x86_64.whl (704 kB)
  Using cached regex-2019.12.17-cp38-cp38-manylinux2010_x86_64.whl (704 kB)
  Using cached regex-2019.12.9.tar.gz (669 kB)
  Using cached regex-2019.11.1.tar.gz (669 kB)
  Using cached regex-2019.08.19.tar.gz (654 kB)
  Using cached regex-2019.06.08.tar.gz (651 kB)
  Using cached regex-2019.06.05.tar.gz (651 kB)
  Using cached regex-2019.06.02.tar.gz (651 kB)
  Using cached regex-2019.05.25.tar.gz (645 kB)
  Using cached regex-2019.04.14.tar.gz (644 kB)
  Using cached regex-2019.04.12.tar.gz (644 kB)
  Using cached regex-2019.04.10.tar.gz (644 kB)
  Using cached regex-2019.04.09.tar.gz (644 kB)
  Using cached regex-2019.03.12.tar.gz (644 kB)
  Using cached regex-2019.03.09.tar.gz (643 kB)
  Using cached regex-2019.03.08.tar.gz (643 kB)
  Using cached regex-2019.02.21.tar.gz (643 kB)
  Using cached regex-2019.02.20.tar.gz (713 kB)
  Using cached regex-2019.02.19.tar.gz (643 kB)
  Using cached regex-2019.02.18.tar.gz (643 kB)
  Using cached regex-2019.02.07.tar.gz (643 kB)
  Using cached regex-2019.02.06.tar.gz (643 kB)
  Using cached regex-2019.02.05.tar.gz (642 kB)
  Using cached regex-2019.02.03.tar.gz (643 kB)
  Using cached regex-2019.01.24.tar.gz (647 kB)
  Using cached regex-2019.01.23.tar.gz (647 kB)
  Using cached regex-2018.11.22.tar.gz (648 kB)
  Using cached regex-2018.11.07.tar.gz (646 kB)
  Using cached regex-2018.11.06.tar.gz (646 kB)
  Using cached regex-2018.11.03.tar.gz (644 kB)
  Using cached regex-2018.11.02.tar.gz (644 kB)
  Using cached regex-2018.08.29.tar.gz (643 kB)
  Using cached regex-2018.08.17.tar.gz (643 kB)
  Using cached regex-2018.07.11.tar.gz (628 kB)
  Using cached regex-2018.06.21.tar.gz (632 kB)
  Using cached regex-2018.06.20.tar.gz (632 kB)
  Using cached regex-2018.06.09.tar.gz (632 kB)
  Using cached regex-2018.06.06.tar.gz (627 kB)
  Using cached regex-2018.02.21.tar.gz (620 kB)
  Using cached regex-2018.02.08.tar.gz (620 kB)
  Using cached regex-2018.02.03.tar.gz (620 kB)
  Using cached regex-2018.01.10.tar.gz (612 kB)
  Using cached regex-2017.12.12.tar.gz (612 kB)
  Using cached regex-2017.12.09.tar.gz (612 kB)
  Using cached regex-2017.12.05.tar.gz (612 kB)
  Using cached regex-2017.11.09.tar.gz (608 kB)
  Using cached regex-2017.11.08.tar.gz (608 kB)
  Using cached regex-2017.09.23.tar.gz (607 kB)
  Using cached regex-2017.07.28.tar.gz (607 kB)
  Using cached regex-2017.07.26.tar.gz (607 kB)
  Using cached regex-2017.07.11.tar.gz (607 kB)
  Using cached regex-2017.06.23.tar.gz (607 kB)
  Using cached regex-2017.06.20.tar.gz (603 kB)
  Using cached regex-2017.06.07.tar.gz (603 kB)
  Using cached regex-2017.05.26.tar.gz (602 kB)
  Using cached regex-2017.04.29.tar.gz (602 kB)
  Using cached regex-2017.04.23.tar.gz (602 kB)
  Using cached regex-2017.04.05.tar.gz (601 kB)
  Using cached regex-2017.02.08.tar.gz (600 kB)
  Using cached regex-2017.01.17.tar.gz (601 kB)
  Using cached regex-2017.01.14.tar.gz (600 kB)
  Using cached regex-2017.01.12.tar.gz (599 kB)
  Using cached regex-2016.12.27.tar.gz (599 kB)
  Using cached regex-2016.11.21.tar.gz (599 kB)
INFO: pip is looking at multiple versions of regex to determine which version is compatible with other requirements. This could take a while.
INFO: This is taking longer than usual. You might need to provide the dependency resolver with stricter constraints to reduce runtime. If you want to abort this run, you can press Ctrl + C to do so. To improve how pip performs, tell us what happened here: https://pip.pypa.io/surveys/backtracking
INFO: pip is looking at multiple versions of pygments to determine which version is compatible with other requirements. This could take a while.
Collecting Pygments>=2.2.0
  Using cached Pygments-2.8.0-py3-none-any.whl (983 kB)
  Using cached Pygments-2.7.4-py3-none-any.whl (950 kB)
  Using cached Pygments-2.7.3-py3-none-any.whl (950 kB)
  Using cached Pygments-2.7.2-py3-none-any.whl (948 kB)
  Using cached Pygments-2.7.1-py3-none-any.whl (944 kB)
  Using cached Pygments-2.7.0-py3-none-any.whl (950 kB)
  Using cached Pygments-2.6.1-py3-none-any.whl (914 kB)
  Using cached Pygments-2.6.0-py3-none-any.whl (914 kB)
  Using cached Pygments-2.5.2-py2.py3-none-any.whl (896 kB)
  Using cached Pygments-2.5.1-py2.py3-none-any.whl (895 kB)
  Using cached Pygments-2.4.2-py2.py3-none-any.whl (883 kB)
  Using cached Pygments-2.4.1-py2.py3-none-any.whl (882 kB)
  Using cached Pygments-2.4.0-py2.py3-none-any.whl (882 kB)
  Using cached Pygments-2.3.1-py2.py3-none-any.whl (849 kB)
  Using cached Pygments-2.3.0-py2.py3-none-any.whl (845 kB)
  Using cached Pygments-2.2.0-py2.py3-none-any.whl (841 kB)
(and then it hangs)

@damnms
Copy link

damnms commented Mar 19, 2021

tbh i just want to run this piece of software on debian 11:
https://github.com/allo-/virtual_webcam_background

anyone an idea how to get this working when pip behaves like it does? should i create a new report to not spam this one here?

unfortunately we use a lot of conferencing software (zoom, ms teams, etc.) and i dont want anyone be able to see my room etc.

@pfmoore
Copy link
Member

pfmoore commented Mar 19, 2021

@damnms Probably the issue tracker for the software itself.

@pembo13
Copy link

pembo13 commented Apr 7, 2021

Is pip broken again? a pip install -U -r requirements.txt on production machine is taking several minutes, and querying packages that aren't even in the requirements.txt. I'm hesitant to stop it as I'm not sure what my alternatives are at this point.

I submitted a report to https://pip.pypa.io/surveys/backtracking but that doesn't really help me right now.

@uranusjr
Copy link
Member

uranusjr commented Apr 7, 2021

It is not broken again. Please read this: #9284 (comment)

I’m going to lock this thread to prevent people from asking again.

@pypa pypa locked as resolved and limited conversation to collaborators Apr 7, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests