We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d7ee38 commit 3f567ffCopy full SHA for 3f567ff
README.md
@@ -20,5 +20,15 @@ And then use [UPX](https://upx.github.io/) to decrease file size:
20
upx aurora_text_editor.exe
21
```
22
23
+For standalone EXE and portability add change the **Nuitka Python to C compiler options** section in the source code file to this:
24
+```
25
+# <--- Nuitka Python to C compiler options
26
+# nuitka-project: --disable-console
27
+# nuitka-project: --lto=yes
28
+# nuitka-project: --enable-plugin=tk-inter
29
+# nuitka-project: --onefile
30
+# --->
31
32
+
33
## === Why? ===
34
Consider this program as a lesson for those who want to write their own text editor or other GUI program using Python and Tkinter. Enjoy!
0 commit comments