【问题标题】:Send py2app application to Mac without python在没有 python 的情况下将 py2app 应用程序发送到 Mac
【发布时间】:2020-05-07 07:10:33
【问题描述】:

我有一个 tkinter 应用程序,我想将它分发给我的同事,他们没有安装 python。 我将 py2app 与以下 setup.py 文件一起使用

from setuptools import setup

import sys
sys.setrecursionlimit(5000)

#APP would be the name of the file your code is in.
APP = ['Doughnut_stress.py']
DATA_FILES = ['C20.icns']
#The Magic is in OPTIONS.
OPTIONS = {
    'packages': ['tkinter', 'matplotlib'],
    'includes': ['tkinter'],
    'argv_emulation': False,
    'iconfile': 'C20.icns', #change app.icns to the image file name!!!
    'plist': {
        'CFBundleName': 'Axial bearing program',
        'CFBundleDisplayName': 'Axial bearing program',
        'CFBundleGetInfoString': "Calculates C20 axial bearing",
        'CFBundleVersion': "0.0.0",
        'CFBundleShortVersionString': "0.0.0",
        'NSHumanReadableCopyright': u"Copyright © 2020, Component 2.0 A/S, All Rights Reserved"
    }
    }

setup(
    app=APP,
    name='Axial bearing program', #change to anything
    data_files=DATA_FILES,
    options={'py2app': OPTIONS},
    setup_requires=['py2app'],
)

然后我用

python setup.py py2app

将程序编译成应用程序。注意我已将 python 符号链接到 python3。我的 python 3 是 3.7.5 版本,是通过 MacPorts 安装的。 py2app 是 0.20 版,tkinter 是 8.6 版

程序编译良好,我可以从终端运行它,或者只需双击应用程序文件,它就可以按预期运行。

但是,当我将它发送给我的同事并尝试通过双击应用程序从他的计算机上打开它时,我会弹出一个窗口,我可以在其中选择“打开控制台”或“终止”。 如果我通过终端运行程序(通过运行 APP_NAME.app/Contents/MacOS/APP_NAME),我会收到以下错误

Traceback (most recent call last):
  File "/Users/prm/Downloads/Component 2.0 axial bearing program.app/Contents/Resources/__boot__.py", line 416, in <module>
    _run()
  File "/Users/prm/Downloads/Component 2.0 axial bearing program.app/Contents/Resources/__boot__.py", line 394, in _run
    exec(compile(source, path, "exec"), globals(), globals())
  File "/Users/prm/Downloads/Component 2.0 axial bearing program.app/Contents/Resources/Doughnut_stress.py", line 31, in <module>
    root = Tk()
  File "tkinter/__init__.pyc", line 2023, in __init__
_tkinter.TclError: Can't find a usable init.tcl in the following directories: 
    /opt/local/lib/tcl8.6 {/Users/prm/Downloads/Component 2.0 axial bearing program.app/Contents/lib/tcl8.6} {/Users/prm/Downloads/Component 2.0 axial bearing program.app/lib/tcl8.6} {/Users/prm/Downloads/Component 2.0 axial bearing program.app/Contents/library} {/Users/prm/Downloads/Component 2.0 axial bearing program.app/library} {/Users/prm/Downloads/Component 2.0 axial bearing program.app/tcl8.6.9/library} /Users/prm/Downloads/tcl8.6.9/library



This probably means that Tcl wasn't installed properly.

2020-01-20 15:54:28.439 Component 2.0 axial bearing program[34251:2906750] Component 2.0 axial bearing program Error

我也可以在 APP_NAME.app/Contents/MacOS/python 中运行包含的 python 文件,这会产生这个错误

Could not find platform independent libraries <prefix>
Could not find platform dependent libraries <exec_prefix>
Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>]
Fatal Python error: initfsencoding: unable to load the file system codec
ModuleNotFoundError: No module named 'encodings'

Current thread 0x000000010d0f8dc0 (most recent call first):
Abort trap: 6

前段时间有人在 Reddit 上发布过这个问题,但没有人回答 https://www.reddit.com/r/learnpython/comments/c1on6f/py2app_in_a_mac_without_python/

如何解决这个问题,以便分发我的 python 应用程序?

【问题讨论】:

  • 我没有mac可以测试,但是你可以尝试添加include 'tcl'; 'tkinter' 可能还不够;可能是更需要的东西
  • 我会尝试添加它,一旦我可以访问我同事的计算机,我将对其进行测试
  • @Drako 我已经尝试将 'tcl' 包含在安装文件中,但是,我仍然遇到同样的错误

标签: python-3.x macos tkinter py2app


【解决方案1】:

我的设置中存在同样的问题(缺少 init.tcl):

  • macOS 10.15.5,venv 和 Python 3.7.7 解释器(包括 TCL8.6),py2app 0.21
  • 事实证明,py2app既没有将TCL复制到venv也没有复制到.app,因此生成的.app在Python安装目录(/Library/Frameworks/Python.framework/Versions/3.7/lib/tcl8)中找到了TCL .6) 在我的设置中。
    • 但是这在没有安装 Python 的设置中不可用 -> 错误

解决方案

当我手动复制时:

- /Library/Frameworks/Python.framework/Versions/3.7/lib/tcl8
- /Library/Frameworks/Python.framework/Versions/3.7/lib/tcl8.6
- /Library/Frameworks/Python.framework/Versions/3.7/lib/tk8.6

- path_to_venv/lib

py2app 将从那里获取它并将其存储在此位置的 .app 中:

- path_to_project/dist/myApp.app/Contents/Resources/lib/

从这里被python代码找到

后续步骤

我看到 2 个主要选项如何实现自动化:

  1. 在 py2app 设置文件中,检查 venv 结构中的 TCL 可用性,如果不可用,则从系统位置复制它
  2. 直接在py2app中实现

【讨论】:

  • 也为我工作!谢谢。但是,我的 tcl8、tcl8.6 和 tk8.6 文件夹位于 /opt/local/lib/ 可以通过打开 python 并运行以下命令找到该位置: ``` import tkinter root = tkinter.Tk() print (root.tk.exprstring('$tcl_library')) 打印(root.tk.exprstring('$tk_library')) ``
  • 是的,TCL 和 TK 的位置取决于 Python 和 TCL 的安装方式。我使用了 python.org 的安装程序。
  • 我已经通过 macports 安装了 Python。但是我认为这些信息可能会帮助遇到同样问题的其他人,这就是为什么我还留下了一些可用于定位文件夹的代码。
【解决方案2】:

除了我使用的是pygame之外,我遇到了和你完全相同的问题。这是一个快速修复:

不要简单地python setup.py py2app,试试:

python setup.py py2app --packages="encodings"

(对我来说,我做了python setup.py py2app --packages="pygame" 并且成功了)

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2012-09-27
    • 2013-09-15
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多