This is a calculator app built in Python using PyQt to create the user interface.
Running the app on Windows from commandline (assuming that python3 and pip is already installed)
- Install the tool for creating isolated virtual python environments
pip install virtualenv
- Create a virtual environment
python -m venv venv
- Open the virtual environment
venv\Scripts\activate
- Install the required libraries into the virtual environment:
pip install -r requirements.txt
- Run the program
python calculator.py
- When finished, the virtual environment can be deactivated with
deactivate