Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output - while installing auto-py-to-exe through pip

前端 未结 3 1413
礼貌的吻别
礼貌的吻别 2020-12-02 00:12

I am trying to download auto-py-to-exe on a different (windows) device than I usually use through pip. However when run I get the error (sorry it is so very very long):

3条回答
  •  佛祖请我去吃肉
    2020-12-02 00:30

    In your problem there are two problems occured

    1. IndexError: list index out of range.
    2. distutils.errors.DistutilsPlatformError: Microsoft Visual C++ 14.0 is required

    For the first error You can try this code

    pip install --no-use-wheel --upgrade distribute
    

    Source


    For the second error you can use

    pip install --upgrade setuptools
    

    Source

提交回复
热议问题