python2.7+wxpython4.0.1+pyinstal

作者: 大石猴 | 来源:发表于2018-07-04 09:05 被阅读10次

    hi 各位看官,本文是截止2018年7月4日,基于python2.7开发wxpython时的打包正确用法。
    坑1:
    wxpython的最新版本为4.0.3 但是因为4.0.3引入了新的pubsub 4.0 不兼容python2.7。所以如果用python2.7的同学必须降级到wxpython 4.0.1版本
    坑2:
    打包方面,我们可以用pyinstaller打包。但是pip上,pyinstaller最新的版本是3.3.1 版本,此版本上有bug https://github.com/pyinstaller/pyinstaller/issues/2215
    但是后期,pyinstall的作者修复了此bug在dev版本上,所以我们只有去github上安装最新的dev版本才能打包成功

    踩坑表现:

    Traceback (most recent call last):
      File "<string>", line 41, in <module>
      File "<string>", line 36, in walk_packages
      File "<string>", line 20, in walk_packages
      File "d:\program files\python\python27\lib\site-packages\wx-3.0-msw\wx\lib\pubsub\core\arg1\__init__.py", line 16, in <module>
        raise RuntimeError(msg)
    RuntimeError: Should not import this directly, used by pubsub.core if applicable
    

    出现pubsub报错,因为wxpython 2.8.0之前的版本用的是\core\arg1\ 所以为了能顺利打包,我们要进行如下操作:

    填坑方法:
    1.pip装wxpython 4.0.1版本

    pip install robotframework==2.8.7
    

    2.pip装dev版本pyinstaller

     pip install git+https://github.com/pyinstaller/pyinstaller
    

    3.重新打包主入口main.py
    pyinstaller -D main.py

    相关文章

      网友评论

        本文标题:python2.7+wxpython4.0.1+pyinstal

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