This is a Basic Calculator using PySide6.
To install and run, first you have to check that python is installed on your machine. To check whether python is installed on your machine or not. Type the following command on your terminal:
python --version
or
python3 --version
If it prints like "Python 3.x.x" then python is installed correctly, else if an error message occurs then you have to install python from the offical website of python.
Once python is installed, then check pip is installed. For that type the following command in terminal:
pip --version
If it print the version successfully, then do the following instructions:
- clone this repository
git clone https://github.com/mohan2406/Basic_Calculator.git - Install the requirements by running following command in the cloned directory:
pip install -r requirements.txt - Finally, after executing the above command. Now you are all set to run the app by running the following command:
or
python MCalc.pypython3 MCalc.py