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

时间:2019-12-31 23:32:16

标签: python windows pip python-3.8

我对PIP 3.8有问题

if process == 'yes':
    # 100 lines of code
    obj = {...}


return Response(obj)

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

请帮我谢谢!

编辑:对不起,英语不好!

2 个答案:

答案 0 :(得分:0)

我将尝试为您提供此失败原因的简短列表。

  1. 自动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

答案 1 :(得分:0)

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