本文介绍了在Windows上使用pyinstaller从.py构建.dmg文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我必须为MacOS用户构建一个python应用程序,并且正在使用Windows.我看到使用pyinstaller可以构建.app文件,但是如何在Windows上做到这一点?

I have to build a python app for a MacOS user and I'm using Windows. I saw that using pyinstaller you can build .app files, but how do I do that on Windows?

推荐答案

Pyinstaller的文档所述:

这意味着您不能仅使用Pyinstaller.您可以尝试使用虚拟机或容器之类的东西,并使用常用方法 (pyinstaller .py) 来执行此操作

This means you can't by only using Pyinstaller. You can try using something like a virtual machine, or containers, and use the common way (pyinstaller <script>.py) to do this

这篇关于在Windows上使用pyinstaller从.py构建.dmg文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 17:57