So im just trying to run a filemanager code and i want it to run as an application.
from setuptools import setup
APP = ['FileManager.py']
OPTIONS = {
'argv_emulation':True,
}
setup(
app = APP,
options = {'py2app':OPTIONS},
setup_requires = ['py2app']
)
But i am running into this error :
Launch error
See the py2app website for debugging launch issues
I am running this app on the same mac that i used to write the script. I tried to check the given website (https://py2app.readthedocs.io/en/latest/debugging.html#debugging-application-building) but i Don't understand as i am not very experienced in python and py2app. Any help would be greatly appreciated. Thanks.