Skip to content

Instantly share code, notes, and snippets.

@amp343
Created July 19, 2017 18:18
Show Gist options
  • Save amp343/bbe3f18a8f4eb305177071139260ab86 to your computer and use it in GitHub Desktop.
Save amp343/bbe3f18a8f4eb305177071139260ab86 to your computer and use it in GitHub Desktop.
$ virtualenv -p /usr/local/bin/python3 venv
Running virtualenv with interpreter /usr/local/bin/python3
Using base prefix '/usr/local/Cellar/python3/3.6.2/Frameworks/Python.framework/Versions/3.6'
New python executable in venv/bin/python3.6
Not overwriting existing python script venv/bin/python (you must use venv/bin/python3.6)
Installing setuptools, pip, wheel...done.
$ source venv/bin/activate
(venv) $ pip install invoke
Collecting invoke
Downloading invoke-0.19.0-py3-none-any.whl (148kB)
100% |████████████████████████████████| 153kB 2.6MB/s
Installing collected packages: invoke
Successfully installed invoke-0.19.0
(venv) $ invoke vendoring.update
[vendoring.update] Using vendor dir: /Users/user/workspace/pip/_vendor
[vendoring.update] Cleaning /Users/user/workspace/pip/_vendor
[vendoring.update] Skipping /Users/user/workspace/pip/_vendor/__init__.py
[vendoring.update] Skipping /Users/user/workspace/pip/_vendor/Makefile
[vendoring.update] Skipping /Users/user/workspace/pip/_vendor/README.rst
[vendoring.update] Skipping /Users/user/workspace/pip/_vendor/vendor.txt
[vendoring.update] Reinstalling vendored libraries
Collecting appdirs==1.4.3 (from -r /Users/user/workspace/pip/_vendor/vendor.txt (line 1))
Using cached appdirs-1.4.3-py2.py3-none-any.whl
Collecting distlib==0.2.5 (from -r /Users/user/workspace/pip/_vendor/vendor.txt (line 2))
Collecting distro==1.0.4 (from -r /Users/user/workspace/pip/_vendor/vendor.txt (line 3))
Using cached distro-1.0.4-py2.py3-none-any.whl
Collecting html5lib==1.0b10 (from -r /Users/user/workspace/pip/_vendor/vendor.txt (line 4))
Using cached html5lib-1.0b10-py2.py3-none-any.whl
Collecting six==1.10.0 (from -r /Users/user/workspace/pip/_vendor/vendor.txt (line 5))
Using cached six-1.10.0-py2.py3-none-any.whl
Collecting colorama==0.3.9 (from -r /Users/user/workspace/pip/_vendor/vendor.txt (line 6))
Using cached colorama-0.3.9-py2.py3-none-any.whl
Collecting CacheControl==0.12.2 (from -r /Users/user/workspace/pip/_vendor/vendor.txt (line 7))
Collecting msgpack-python==0.4.8 (from -r /Users/user/workspace/pip/_vendor/vendor.txt (line 8))
Collecting lockfile==0.12.2 (from -r /Users/user/workspace/pip/_vendor/vendor.txt (line 9))
Using cached lockfile-0.12.2-py2.py3-none-any.whl
Collecting progress==1.3 (from -r /Users/user/workspace/pip/_vendor/vendor.txt (line 10))
Collecting ipaddress==1.0.18 (from -r /Users/user/workspace/pip/_vendor/vendor.txt (line 11))
Collecting packaging==16.8 (from -r /Users/user/workspace/pip/_vendor/vendor.txt (line 12))
Using cached packaging-16.8-py2.py3-none-any.whl
pick 18c35a79 Limit the disabling of requests' pyopenssl import to Windows
Collecting pyparsing==2.2.0 (from -r /Users/user/workspace/pip/_vendor/vendor.txt (line 13))
Using cached pyparsing-2.2.0-py2.py3-none-any.whl
Collecting pytoml==0.1.12 (from -r /Users/user/workspace/pip/_vendor/vendor.txt (line 14))
Collecting retrying==1.3.3 (from -r /Users/user/workspace/pip/_vendor/vendor.txt (line 15))
Collecting requests==2.14.2 (from -r /Users/user/workspace/pip/_vendor/vendor.txt (line 16))
Using cached requests-2.14.2-py2.py3-none-any.whl
Collecting setuptools==35.0.2 (from -r /Users/user/workspace/pip/_vendor/vendor.txt (line 17))
Using cached setuptools-35.0.2-py2.py3-none-any.whl
Collecting webencodings==0.5.1 (from -r /Users/user/workspace/pip/_vendor/vendor.txt (line 18))
Using cached webencodings-0.5.1-py2.py3-none-any.whl
Installing collected packages: appdirs, distlib, distro, six, pyparsing, packaging, setuptools, webencodings, html5lib, colorama, msgpack-python, requests, CacheControl, lockfile, progress, ipaddress, pytoml, retrying
Successfully installed CacheControl-0.12.2 appdirs-1.4.3 colorama-0.3.9 distlib-0.2.5 distro-1.0.4 html5lib-1.0b10 ipaddress-1.0.18 lockfile-0.12.2 msgpack-python-0.4.8 packaging-16.8 progress-1.3 pyparsing-2.2.0 pytoml-0.1.12 requests-2.14.2 retrying-1.3.3 setuptools-35.0.2 six-1.10.0 webencodings-0.5.1
[vendoring.update] Detected vendored libraries: appdirs, cachecontrol, colorama, distlib, distro, html5lib, ipaddress, lockfile, msgpack, packaging, pkg_resources, progress, pyparsing, pytoml, requests, retrying, six, webencodings
[vendoring.update] Rewriting all imports related to vendored libs
[vendoring.update] Apply patches
[vendoring.update] Applying patch cachecontrol.patch
[vendoring.update] Applying patch distro.patch
[vendoring.update] Applying patch pkg_resources.patch
[vendoring.update] Applying patch requests.patch
[vendoring.update] Revendoring complete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment