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
- Host: GitHub
- URL: https://github.com/arvind-4/calculator-using-pyqt5
- Owner: Arvind-4
- License: mit
- Created: 2021-05-08T08:59:33.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-11-11T15:21:15.000Z (almost 2 years ago)
- Last Synced: 2024-05-30T16:56:34.736Z (over 1 year ago)
- Topics: calculator, pyqt5, python3, scientific-calculator
- Language: Python
- Homepage:
- Size: 432 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Calculator:
A simple calculator GUI app in Python and PyQt5.
## Screenshots:
![]()
## 📦 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
```