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
On Ubuntu Server 16, I have the same problem with python27. Try this:
Change
from pip import main if __name__ == '__main__': sys.exit(main())
To
from pip._internal import main if __name__ == '__main__': sys.exit(main())