-1

I have a c++ file and a python file.

I can turn both of these to .exe files. But I can't turn them into .app files.

I am using the pyinstaller module for python files.

How can I turn the files into .app files?

gkpln3
  • 1,317
  • 10
  • 24
YetkinG.
  • 51
  • 1
  • 4
  • ".app files" are actually folders, called "bundles". (You can right-click one in the Finder and choose "View contents" or view its contents in the terminal.) The structure of the folder is described in Apple's documentation. – molbdnilo Jan 21 '21 at 15:32
  • I know this but unfortunately it doesn't work for me :) @molbdnilo – YetkinG. Jan 21 '21 at 15:35

1 Answers1

1

As per PyInstaller's documentation, you can use it also to build a mac application. However, you would have to build it from Mac OS.

https://pyinstaller.readthedocs.io/en/stable/usage.html#building-mac-os-x-app-bundles

ApplePie
  • 8,814
  • 5
  • 39
  • 60