遇到这个问题把我这个小白整懵逼好几天,查了好多大神们的贴才知道主要原因就是 pyinstaller 工具对python版本的支持问题
正常使用pip install pyintaller命令安装的不支持3.7及以上 (好像是,具体版本不太清楚我是3.10)
安装了的小伙伴首先要卸载掉使用命令
pip uninstall pyinstaller
卸载已安装的
然后下载开发版pyinstaller
可以在cmd中使用命令
pip instal https://github.com/pyinstaller/pyinstaller/archive/develop.tar.gz
也可以到github上下载地址https://github.com/pyinstaller/pyinstaller下载 后解压得到pyinstaller文件并拷到python根目录下
然后进入pyinstaller目录下运行cmd 输入命令python setup.py build和python setup.py install
安装完成后可用pyinstaller -v查看版本信息
成功后就可以正常使用打包程序了