Jondy

Results 177 comments of Jondy

I spent almost 2 days on this issue, still not found the reason. But if using the python option `-X dev`, it seems the obfuscated script could work. I did...

It should install this https://files.pythonhosted.org/packages/3b/ef/7949e43ee5ce3ff16df9e8a336944a78171a8aec8a019d835e933d9ba858/pyarmor.cli.core-5.4.3-cp311-none-macosx_11_0_arm64.whl

This is a patch for this issue ```patch --- a/pyarmor/cli/core/__init__.py +++ b/pyarmor/cli/core/__init__.py @@ -67,6 +67,9 @@ def format_platform(): bitness = calcsize('P'.encode()) * 8 if bitness == 32: mach = 'x86'...

Too many requests to license server in one minute, try it later.

PyInstaller loader is different from Python Interpreter, so the script executed by PyInstaller loader must be no restrict. Here is an example to show how to use `--private` with pack...

Got it, it seems `fake_main` with `exclude_restrict_modules` doesn't work. I'll check it again

Here is one solution by patching `PyInstaller\loader\pyimod02_importers.py` The idea is to make PyInstaller module loader like CPython interpreter In the traceback, there is a line ``` File "PyInstaller\loader\pyimod02_importers.py", line 499,...

This is temporary solution, if this patch works, in next release v8.5.0, it will be implemented in the pyarmor side, so need do nothing in PyInstaller.