Metatrons Cube
Regular Member
- Feb 9, 2019
- 244
- 117
Anyone have any experience with converting scripts into programs/executables that non-coders can use easily without needing to install modules/dependencies etc?
Pyinstaller.Anyone have any experience with converting scripts into programs/executables that non-coders can use easily without needing to install modules/dependencies etc?
Yes but this will leak your source code every time you run it. Simply because Pyinstaller unpacks your source code really fast into a temp folder then loads it up quickly into memory.Pyinstaller.
Pyinstaller
Yes but this will leak your source code every time you run it. Simply because Pyinstaller unpacks your source code really fast into a temp folder then loads it up quickly into memory.
I don't think there exists any other method where you don't leak your source code. The main reason is because all of the Python executables actually include the Python interpreter bundled with your code. When you run it, it basically extracts the Python interpreter and your source code.I've looked at PyInstaller, is there another method which doesn't leak the source code?
as the guy said above, the source will be leaked. Use some compiled language, not some interpreted lang.I've looked at PyInstaller, is there another method which doesn't leak the source code?