Anaconda使用pyinstaller打包出错 Fatal error in launcher: Unable to create process using

这里写自定义目录标题


因为之前的python版本太低,卸载anaconda后重新安装高版本的anaconda,在使用pyinstaller打包出错,报错内容为 Fatal error in launcher: Unable to create process using****
找了好多资料都无法解决问题,后来分析一下原因,报错是因为无法调用pyinstaller.exe,因此在terminal尝试使用绝对路径来运行,发现正常运行了,至于为什么这样可以,我也不知道怎么回事,有知道的小伙伴可以留言。。。。

下面是我的解决方法:
在terminal输入:
python 绝对路径下的pyinstaller.exe test.spec
例如:

python C:\\Anaconda3\\envs\\pytorch\\scripts\\pyinstaller.exe test.spec
或者
python -m PyInstaller test.spec

亲测第二种方法更好用

你可能感兴趣的:(python,深度学习,开发语言)