如何创建内部包含可执行文件的可执行文件?
我想制作一个带有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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您希望下载单个文件,但其中包含各种文件(应用程序或其他文件),则最好使用安装包。
如果您要交付 Python 应用程序(根据您的标签)以及可执行文件,您可能需要查看这些:
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:
您想要做的是从您的应用程序调用一个进程[用于 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.