I\'ve installed the latest python (2.7.9) bundled with pip and setuptools for windows 32-bit. I\'ve tried reinstalling pip but the problem persists.
Here\'s the erro
The bug is found in pip 10.0.0.
In linux you need to modify file: /usr/bin/pip from:
from pip import main if __name__ == '__main__': sys.exit(main())
to this:
from pip import __main__ if __name__ == '__main__': sys.exit(__main__._main())