“python setup.py egg_info” failed with error code 1

前端 未结 4 1745
被撕碎了的回忆
被撕碎了的回忆 2020-12-11 17:36

when trying to install flask-mysql i get the following error msg:

Command \"python setup.py egg_info\" failed with error code 1 in /private/v

4条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-11 17:47

    I met the same problem when install matplotlib and following command workd:

    pip install --upgrade setuptools
    
    pip install ez_setup
    

    Ref here

提交回复
热议问题