This question already has answers here: Is it possible to decompile a compiled .pyc file into a .py file? (9 answers) Closed last month. Currently, I have a PYC file for the 3.9.2 version of python (P.S: This applies to all versions 3.9 and above). I’m trying to decompile the PYC file but it is showing an error as uncompyle6
Tag: pyc
ModuleNotFoundError with setup.py using a compiled pyc module
I can normally import a compiled .pyc module as well as .py, but when trying to package a simple project with setup.py, I’m getting the ModuleNotFoundError exception for the compiled .pyc module. Because this is only happening when using setup.py, otherwise is working fine, I don’t know if there’s something I should had to setup.py to make this work. The