Notimplementederror: Can't Perform This Operation For Unregistered Loader Type Python : Trying To Convert Py To .exe Using Cx_freeze
I'm trying to convert a pygame project to an executable and it works fine on launch but when I clicked the play button it produces this error and I'm not sure how to fix it would
Solution 1:
You could try to find out which resource is causing the exception by replacing the lines 50 to 51 of C:\Users\Jackj\AppData\Local\Programs\Python\Python36\lib\site-packages\pygame\pkgdata.py
with:
try:
if resource_exists(pkgname, identifier):
return resource_stream(pkgname, identifier)
except Exception as e:
print(pkgname, identifier)
raise e
Post a Comment for "Notimplementederror: Can't Perform This Operation For Unregistered Loader Type Python : Trying To Convert Py To .exe Using Cx_freeze"