PIP 无法安装自动 py-to-exe



我对 PIP 3.8 有问题

C:UsersiivooPycharmProjectsTESTvenvScripts>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:UsersiivooAppDataLocalTemppip-install-gf4x4k83gevent

我不知道我有什么问题:最新的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 🎉(在这里阅读

Python3.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

相关内容

  • 没有找到相关文章

最新更新