ImportError: cannot import name main when running pip --version command in windows7 32 bit

后端 未结 16 1474
余生分开走
余生分开走 2020-11-28 01:28

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

16条回答
  •  -上瘾入骨i
    2020-11-28 02:03

    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())
    

提交回复
热议问题