如何创建内部包含可执行文件的可执行文件?

发布于 2024-11-28 14:15:39 字数 107 浏览 1 评论 0原文

我想制作一个带有VNC Windows客户端的可执行文件,当应用程序执行时,它会提示一些东西,一条消息或一些东西,然后打开VNC客户端并自行关闭,只留下VNC打开...

我该怎么办那?

I want to make an executable with VNC windows client inside, and when the app is executed, it prompts something, a message or something, and then opens the VNC client and closes itself, leaving only the VNC open...

How can I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

放肆 2024-12-05 14:15:40

如果您希望下载单个文件,但其中包含各种文件(应用程序或其他文件),则最好使用安装包。

如果您要交付 Python 应用程序(根据您的标签)以及可执行文件,您可能需要查看这些:

  1. 安装工具
  2. pip

If you wish to download a single file but have various files (applications, or whatever) in it, you better use an installation package.

If you're going to deliver a Python application (as per your tag) along with executable files, you might want to take a look at these:

  1. setuptools
  2. pip
画离情绘悲伤 2024-12-05 14:15:40

您想要做的是从您的应用程序调用一个进程[用于 VNC Windows 客户端],而不是将可执行文件嵌入到另一个进程中(顺便说一句,这没有意义。)

有关更多信息如何执行此操作,请参阅 Python 文档中的子进程管理

What you want to do is invoke a process [for the VNC windows client] from your application, not embed an executable within another (which doesn't make sense, by the way.)

For more information on how to do this, see Subprocess Management in the Python documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文