Python: Making a standalone executable file on MacOS with py2app

亡梦爱人 提交于 2019-12-05 17:39:40

plistlib.Dict was available but not documented. In python 3.4 it was finally documented; also documented that it's deprecated since 3.0.

In python 3.7 it is no longer documented and perhaps removed from plistlib library.

This means that py2app currently not yet compatible with Python 3.7. I found this issue, it was reported half a year ago and resolved a few days later. The resolution is: upgrade py2app to the latest version 0.15 with the following command :

pip3.7 install -U py2app

Verify version with

pip show py2app
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!