AttributeError: Module Pip has no attribute 'main'

后端 未结 16 1441
滥情空心
滥情空心 2020-11-29 00:53

I am trying to build the python api for an open source project called Zulip and I keep running into the same issue as indicated by the screenshot below.

I am running

16条回答
  •  情书的邮戳
    2020-11-29 01:23

    This helps me, https://pip.pypa.io/en/stable/installing/

    curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
    python get-pip.py
    

    If you are using python3 and not set it default. do this,

    python3 get-pip.py
    

    It works for me.

提交回复
热议问题