An open API service indexing awesome lists of open source software.

https://github.com/arvind-4/calculator-using-pyqt5

Calculator in PyQt5
https://github.com/arvind-4/calculator-using-pyqt5

calculator pyqt5 python3 scientific-calculator

Last synced: 8 months ago
JSON representation

Calculator in PyQt5

Awesome Lists containing this project

README

          

# Calculator:

A simple calculator GUI app in Python and PyQt5.

## Screenshots:


Calculator UI

## 📦 Tech Stack:

- [Python](https://www.python.org/) - Python is a high-level, general-purpose programming language.
- [PyQt5](https://www.riverbankcomputing.com/static/Docs/PyQt5/) - A comprehensive set of Python bindings for Qt v5.

## Getting Started:

- Clone Repo

```bash
cd /path/to/folder
mkdir calculator
cd calculator
git clone https://github.com/Arvind-4/Calculator-In-PyQt5.git .
```

- Create a Virtual Environment

```bash
cd calculator
python3.9 -m venv .
source bin/activate
```

**For Windows use:** `.\Scripts\activate`

- Install Dependencies

```bash
pip install -r requirements.txt
```

- Run the App

```bash
python src/main.py
```