Python教程

python打包exe报错:IndexError: tuple index out of range

本文主要是介绍python打包exe报错:IndexError: tuple index out of range,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

因为pyinstaller不支持python3.5以上版本,如果不回退版本,可以卸载原有安装包,按下方指令重新安装。

pip uninstall pyinstaller
pip install https://github.com/pyinstaller/pyinstaller/tarball/develop

编译成可执行文件(.exe)

pyinstaller -F hello.py
这篇关于python打包exe报错:IndexError: tuple index out of range的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!