1

I am on Windows and I am trying to figure how to use Pyinstaller to make a file (on Windows) for a Mac.

I have no trouble with Windows I am just not sure how I would make a file for another OS on it.

What I tried in cmd was: pyinstaller -F myfile.py and I am not sure what to change to make a Mac compatible file.

eyllanesc
  • 235,170
  • 19
  • 170
  • 241
xXGokyXx
  • 13
  • 3
  • 1
    This is not possible, have a look at the [pyinstaller FAQ](https://github.com/pyinstaller/pyinstaller/wiki/FAQ#features). – Maurice Meyer Jan 22 '19 at 23:14
  • Oh okay, is there anything else you know of that I could use to do this? – xXGokyXx Jan 22 '19 at 23:51
  • There is no way to do that, review this [SO question](https://stackoverflow.com/questions/34772216/how-to-create-os-x-app-with-python-on-windows). The closest thing is [nuitka](http://nuitka.net/), but i didnt try to cross compile. Or install OSX in virtualbox and use pyinstaller there. – Maurice Meyer Jan 23 '19 at 00:27

1 Answers1

0

Not Possible without using a Virtual Machine

xXGokyXx
  • 13
  • 3