Calculator project from Luiz Otávio Miranda's Python course to learn the principles of PySide6, a graphical user interface (GUI) library.
- Enter: Enter, Return and '='
- Clear: ESC and 'C'
- Delete: Backspace, Delete and 'D'
- Pow: 'P'
# Clone this repository
$ git clone https://github.com/guugimeness/calculator-py
# Access the project folder in your terminal
$ cd calculator-py
# Create and activate your virtual environment
$ python3 -m venv venv
$ source venv/bin/activate
# Install the dependencies using pip
$ pip install -r requirements.txt
# Use PyInstaller to create the calculator executable
$ pyinstaller Calculator.spec
# The application will be created in /dist
The following tools were used in the construction of the project:
This project is under the license MIT