py2app is not copying the Python.framework to the new app while using virutalenv

后端 未结 1 1526
眼角桃花
眼角桃花 2020-11-30 12:36

environment: MacOS X 10.7.2, system installed python 2.7.1, virtualenv 1.7.2, pyobjc 2.3, py2app 0.6.4+

I have a newly created virtualenv with pyobc 2.3 and py2app i

相关标签:
1条回答
  • 2020-11-30 13:06

    py2app never copies a system Python into an app bundle that it produces. If you want to make a standalone app that can be deployed on multiple versions of OS X, you need to use py2app with a separately-installed Python, like from a python.org installer. See, for example, Py2App Can't find standard modules

    0 讨论(0)
提交回复
热议问题