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

后端 未结 16 1522
余生分开走
余生分开走 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条回答
  •  无人及你
    2020-11-28 02:04

    On Windows 10, I had the same problem. PIP 19 was already installed in my system but wasn't showing up. The error was No Module Found.

    python -m pip uninstall pip
    python -m pip install pip==9.0.3
    

    Downgrading pip to 9.0.3 worked fine for me.

提交回复
热议问题