Standalone Python EXE Executable - Python Kivy GUI Tutorial #20

In this video we’ll create a standalone executable .exe file for our Calculator app with Kivy and Python that you can share with your friends, or sell on your website, or whatever! We’ll be using the free pyinstaller to do all of this work. Step One: pip install pyinstaller Step Two: pyinstaller -w Step Three: modify our file, making several changes shown in the video. Step Four: pyinstaller -y Step Five: Zip up all the files into one .zip file that you can share!
Back to Top