Python: setup.py egg_info failed with error code 1

后端 未结 3 1817
闹比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:05

    make sure it's up to date

    pip install --upgrade setuptools
    

    make sure module ez_setup isn't missing

    pip install ez_setup
    

    then try this

    pip install unroll 
    

    if it's still not working try this

    easy_install -U setuptools
    

    and then

    pip install unroll
    

提交回复
热议问题