pip freeze | grep urllib
python -c "import urllib3; print(urllib3.__version__)"
# shows 1.9.1
rm -rf /tmp/venv-no-system
virtualenv /tmp/venv-no-system
/tmp/venv-no-system/bin/pip freeze | grep urllib
/tmp/venv-no-system/bin/pip install --upgrade urllib3
/tmp/venv-no-system/bin/pip freeze | grep urllib
/tmp/venv-no-system/bin/python -c "import urllib3; print(urllib3.__version__)"
# shows 1.12
rm -rf /tmp/venv-with-system
virtualenv --system-site-packages /tmp/venv-with-system
/tmp/venv-with-system/bin/pip freeze | grep urllib
/tmp/venv-with-system/bin/pip install --upgrade urllib3
/tmp/venv-with-system/bin/pip freeze | grep urllib
/tmp/venv-with-system/bin/python -c "import urllib3; print(urllib3.__version__)"
# shows 1.9.1