Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一个 python 解释器来静态链接到我的应用程序(Windows 应用程序),这意味着我的应用程序不需要 dll。我的应用程序不会使用任何第三方 python 模块,只使用文本脚本。
我怎样才能做到这一点?或者可能已经编译了库?
需要一个3.2版本的python
由于 Windows 加载程序的工作方式,这是不可能的;应用程序加载的 DLL(包括 .pyd 文件)默认无法访问可执行文件使用/提供的符号表,因此必须改为从 pythonX.Y.dll 读取符号。