Skip to content

Instantly share code, notes, and snippets.

@sarah-j-smith
Created June 13, 2018 01:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sarah-j-smith/e4853509e52c723fc12267ed9ab3c26c to your computer and use it in GitHub Desktop.
Save sarah-j-smith/e4853509e52c723fc12267ed9ab3c26c to your computer and use it in GitHub Desktop.
Fix for pip incompatibilities
# This Ubuntu issue seems to be affecting Python/pip on Mac - https://github.com/beenje/script.module.requests/issues/21
# requests 2.18.2 has requirement urllib3<1.23,>=1.21.1, but you'll have urllib3 1.23 which is incompatible.
# Force the version of urllib3
pip install urllib3==1.22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment