@@ -7,7 +7,7 @@ Compiling a Game with Nuitka
77 :width: 30%
88 :class: right-image
99
10- So you have successully written your dream game with Arcade and now, you want
10+ So you have successfully written your dream game with Arcade and now, you want
1111to share it with your friends and family. Good idea! But there is a *small * issue.
1212Sadly, they are not a tech geek as big as you are and don't have any knowledge
1313about Python and its working :(. Though :ref: `bundle_into_redistributable ` *is * a good option, the
@@ -60,13 +60,13 @@ Converting that code to a standalone executable is as easy as:
6060 python -m nuitka 17_views.py --standalone --enable-plugin=numpy
6161
6262 Now sit back and relax. Might as well go and grab a cup of coffee since compilation
63- takes time, sometimes maybe upto 2 hours, depending on your machine's specs.
63+ takes time, sometimes maybe up to 2 hours, depending on your machine's specs.
6464After the process is finished, two new folders named ``17_views.py.dist `` and
6565``17_views.py.build `` will popup. You can safely ignore the build folder for now.
6666Just go to the dis folder and run ``17_views.exe `` file , present in there. If there are no
6767errors, then the application should work perfectly.
6868
69- Congratulations! You have successully compiled your Python code to a standalone executable!
69+ Congratulations! You have successfully compiled your Python code to a standalone executable!
7070
7171Note: If you want to compile the code to a single file instead of a folder, just remove the ``standalone ``
7272flag and add the ``onefile `` flag!
0 commit comments