Stand-alone app with PyInstaller

October 15, 2021

Last post I’ve build a GUI calculator from an online class and added some extra functions to it. This post I’ll be creating the app as a stand-alone app for Mac and one for Windows.

I’m using PyInstaller to do this, this is a stand-alone app you use in the command line/terminal to have it bundle the app together so you can give it to somebody else to run. Very useful if you’re building an app for a client in a GUI interface and want to give them an app that looks like a real app. This will give them a basic interface that looks like other basic apps they run on their OS.

I saved my calculator into a separate folder, there will be several extra files during the creation. My calculator file is called ‘calculator.py’, if you have an image to show for the app, place there here also.

In terminal/command prompt:

Go to the directory/folder you have the file located:

cd <filepath>
pyinstaller --onefile --icon=favicon.ico --noconsole calculator.py

pyinstaller = calling the program to run, then below we’re passing arguments to pyinstaller
–onefile = to combine into one file
–icon= = point to the icon you have listed in the app
–noconsole = stops a terminal window from displaying when app loads
calculator.py = Name of Python program to be used, this needs to be the last in the list.

PyInstaller Manual: https://pyinstaller.readthedocs.io/en/stable/

Downloads of the calculator. This calculator is just a sample to show that a Python program can be created to a stand-alone app. This app has not fully been tested, use a regular calculator app to do for real world work.

Added this warning to the bottom of the program window, in case with search engines take somebody straight to the download of the file I don’t want them to have any issues if there is any bad calculations from the test app.

WARNING!!
This is just a test version to show Tkinter and Pyinstaller for Python, this program is for demonstrative purposes only!”

Mac Version
Windows Version

Windows version: https://lynnamacher.com/programs/calculator.exe.zip
Mac version: https://lynnamacher.com/programs/calculator.app.zip

Full code on GitHub: https://github.com/amacher/calculator

Related Articles

Sometimes the low-tech approach is the best way

Sometimes the low-tech approach is the best way

Have a family member looking to get me some family videos they had digitized, in one big file, about 80GB (they may not have optimized or know how). The need: The family member’s internet connection isn’t the best and could get disconnected at times, when this happens...

read more
AWS HTML Forms email and database working notes

AWS HTML Forms email and database working notes

Over the last weekend I worked to get a basic working version of 2 features for a HTML website forms to process through AWS. Those are proof of concepts (POC) to make sure that I can make them and write down the basic instructions for myself and notes of what to look...

read more
Received AWS Certified Cloud Practitioner Certificate

Received AWS Certified Cloud Practitioner Certificate

This past weekend I tested and received my AWS Certified Cloud Practitioner certification. When I started training for the test I had very little exposure to AWS. I studied for a little over a month, around 60 hours, before taking the test; which luckily I passed on...

read more

Pin It on Pinterest

Share This