From f0d2caae8bc4825421405f4482cc84b8e66728f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 6 Oct 2020 07:42:25 +0200 Subject: [PATCH] Pyinstaller --- index.html | 6 +++--- parse.js | 11 ++++++++++- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 1ee9c96..4eca682 100644 --- a/index.html +++ b/index.html @@ -2933,12 +2933,12 @@ cdef <type/void> <func_name>(<type> <arg_name_1>, ...):
cdef enum <enum_name>: <member_name_1>, <member_name_2>, ...
 
-

#Appendix

PyInstaller

$ pip3 install pyinstaller
+

#Appendix

PyInstaller

$ pip3 install pyinstaller
 $ pyinstaller script.py                        # Compiles into './dist/script' directory.
 $ pyinstaller script.py --onefile              # Compiles into './dist/script' console app.
 $ pyinstaller script.py --windowed             # Compiles into './dist/script' windowed app.
-$ pyinstaller script.py --add-data '<path>:.'  # Adds file to the root of the executable.
-
+$ pyinstaller script.py --add-data '<path>:.' # Adds file to the root of the executable. +