Python: setup.py egg_info failed with error code 1

后端 未结 3 1820
闹比i
闹比i 2021-01-21 03:34

I already updated my Python 2.7.x to 3.6 and still getting this message when I try to install any package. Examples: Flask, Kivy..

Command \"python setup.

3条回答
  •  滥情空心
    2021-01-21 04:13

    For me, the problem was solved with updating the pip itself:

    # X is the required Python number, e.g. 2 or 3 or 2.7 or 3.5 or 3.6, etc.
    sudo pythonX -m pip install --upgrade pip  
    

提交回复
热议问题