gpt4 book ai didi

python - 在应用程序中包含 openssl

转载 作者:太空宇宙 更新时间:2023-11-03 18:57:10 26 4
gpt4 key购买 nike

我正在尝试为 OS X 构建 Bitmessage 的独立版本。到目前为止,我已通过以下 setup.py 成功将 PyQt4 包含在构建中:

from setuptools import setup

APP = ['bitmessagemain.py']
DATA_FILES = []
OPTIONS = {'argv_emulation': True,
'iconfile': '/Users/jackson/Desktop/Bitmessagelogo-reduced.icns', 'includes': ['PyQt4']}

setup(
app=APP,
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)

我似乎不知道如何将 openssl 捆绑到我的包含中。有谁知道吗?

最佳答案

如果存在与 openssl 链接的扩展的导入语句(例如 stdlib SSL 支持或 pyOpenSSL),Py2app 应检测对 openssl 的依赖关系。

也就是说,py2app 不会将/usr/lib 中的 openssl 副本包含到您的应用程序包中。来自系统位置(例如/usr/lib 和/System)的文件被假定为操作系统文件,并且永远不会包含在 py2app 创建的包中。

关于python - 在应用程序中包含 openssl,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17015490/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com