美文网首页
Failed to execute script 'first'

Failed to execute script 'first'

作者: WMSmile | 来源:发表于2022-05-01 15:22 被阅读0次

    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 是项目的上级目录

    再重新打包就可以了。

    相关文章

      网友评论

          本文标题:Failed to execute script 'first'

          本文链接:https://www.haomeiwen.com/subject/ahlpyrtx.html