Failed to execute script 'first'

2022-05-01  本文已影响0人  WMSmile

pyinstaller 打成exe,遇到Failed to execute script 'first' due to unhandled exception:cannot import name问题.

Failed to execute script 'first' due to unhandled exception:cannot import name 'recordclient' from 'recordtool' (unknown location)


WechatIMG1366.png

解决办法:

  1. 检查是否有 __init__.py 文件
  2. 检查是否添加系统环境变量 * PYTHONPATH *

PYTHONPATH是Python搜索路径,默认我们import的模块都会从PYTHONPATH里面寻找。


WechatIMG1373.png

右击【我的电脑】-【属性】-【高级系统设置】-【环境变量】-【新建】,变量名写PYTHONPATH,变量值就是你要导入模块的路径了,以后还要导入其他模块,就继续在后面添加路径,至此,已经设置好了。

添加项目目录上一级目录 PYTHONPATH

G:\python 是项目的上级目录

再重新打包就可以了。

上一篇下一篇

猜你喜欢

热点阅读