PIP 无法安装 auto-py-to-exe

PIP fails to install auto-py-to-exe

我对 PIP 3.8 有疑问

C:\Users\iivoo\PycharmProjects\TEST\venv\Scripts>pip install auto-py-to-exe
Collecting auto-py-to-exe...

distutils.errors.DistutilsError: Setup script exited with error: command 'C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\cl.exe' failed with exit status 2

----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in C:\Users\iivoo\AppData\Local\Temp\pip-install-gf4x4k83\gevent\

我不知道我有什么问题:最新的 visual studio c++ 构建工具,python 3.8,pip 3.8,最新的 pyinstaller,windows 10

请帮助我谢谢!

编辑:抱歉英语不好!

我会尽量给你一个简短的失败原因列表。

  1. Auto Py To Exe 使用(基于)PyInstaller
  2. PyInstaller 不支持 Python 3.8
  3. 因此,Auto Py To Exe 不适用于 Python 3.8.x 但它适用于 Python:Python >= 2.7(包括 3.7) Read here

Python 3.8 尚不支持 PyInstaller。此解决方案有效:

    pip uninstall pyinstaller
    pip install https://github.com/pyinstaller/pyinstaller/archive/develop.zip
    pip install -U gevent==1.5a3
    pip install -U auto-py-to-exe