You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 27, 2022. It is now read-only.
I made a simple GUI to download all my clips to a folder and struggled for days to package it as a .exe file. I finally found the problem:
consider renaming the 'resource.py' to something else. I did 'resource2.py', and updated line 2 in 'init.py' to 'import .resource2'.
I believe the problem is that python already has a 'resource' module installed and py2exe was getting confused since xbox was referencing its own version of 'resource'.
I made a simple GUI to download all my clips to a folder and struggled for days to package it as a .exe file. I finally found the problem:
consider renaming the 'resource.py' to something else. I did 'resource2.py', and updated line 2 in 'init.py' to 'import .resource2'.
I believe the problem is that python already has a 'resource' module installed and py2exe was getting confused since xbox was referencing its own version of 'resource'.
hope all that makes sense.