Возможно ли скомпилировать обратно после pyinstxtractor?
Я распаковал архив заменил в .pyc и хотелось бы обратно в exe возможно ли такое?
Python 3.12
Я распаковал архив заменил в .pyc и хотелось бы обратно в exe возможно ли такое?
Python 3.12
pyc it's on 3.12 python and uncompyle6 doesn't support 3.12decompile the .pyc files back to .py using decompyle6 or uncompyle6 then compile the python script to exe using pyinstaller
well if you are not willing to downgrade the project then you will have to use PyCDC a (bytecode decompiler written in C++ that has seen updates for newer Python versions) you will need to edit the python source once it decompiled from .pyc to .pypyc it's on 3.12 python and uncompyle6 doesn't support 3.12
unfortunately it didn't workwell if you are not willing to downgrade the project then you will have to use PyCDC a (bytecode decompiler written in C++ that has seen updates for newer Python versions) you will need to edit the python source once it decompiled from .pyc to .py
or use
hope this help