gpt4 book ai didi

python - 如何为 MacOs Big Sur 使用 pyinstaller?

转载 作者:行者123 更新时间:2023-12-02 16:23:52 32 4
gpt4 key购买 nike

我有一个小工具。这些是外部库。

import pyperclip
import webbrowser
import tkinter as tk

如何使用 pyinstaller 使其成为 macOs 桌面应用程序? This is the code.

最佳答案

由于这个原因,PyInstaller 目前在 Big Sur 上有问题:

New in macOS Big Sur 11.0.1, the system ships with a built-in dynamiclinker cache of all system-provided libraries. As part of this change,copies of dynamic libraries are no longer present on the filesystem.Code that attempts to check for dynamic library presence by lookingfor a file at a path or enumerating a directory will fail. Instead,check for library presence by attempting to dlopen() the path, whichwill correctly check for the library in the cache. (62986286)

执行pyinstaller时会丢失系统库

有一些讨论here ,但该错误尚未修复。 (2020 年 12 月 21 日)

作为pyinstaller document建议,你最好使用旧版本的 OSX用于向前兼容。

只需运行:

pyinstaller --windowed my_code.py

关于python - 如何为 MacOs Big Sur 使用 pyinstaller?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64954725/

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