【坑】python之第三方库pyinstaller打包时出现Unable to create process using 'f:\python.exe‘

打包的时候突然出现这个情况cmd反馈

第一次出现这种情况,上网找了很多办法,重装、更新pip无果,也不是环境变量等问题。因为自己试了一下,其他第三方库都可以正常使用,根本原因应该还是pyinstaller本身的原因。
访问pyinstaller官网:http://www.pyinstaller.org/downloads.html
在官网中可以看到[安装最新开发版本](https://img-blog.csdnimg.cn/20200331222738865.png)
语句如下:pip install https://github.com/pyinstaller/pyinstaller/archive/develop.tar.gz
只需到cmd重装最新版pyinstaller即可。
[美滋滋](https://img-blog.csdnimg.cn/20200331222852247.png)
记录一下。

你可能感兴趣的:(python)