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. +