kartikcode / Calculator

Kivy based code, very efficient one for understanding the Kivy workflow

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Calculator

Kivy based code, very efficient one for understanding the Kivy workflow.
I personally find this simple project to be a real must if someone wishes to fully understand the Kivy GUI.

Of course, run it on your terminal with python3 installed on it.
While installing Kivy, make sure its compatible with python3 or else its gonna make your life tough:)

Running it through a virtual environment

There is some sort of a bug in Ubuntu 18.0.4 which causes a lot of trouble.
An easy cure is that you run it in a python3 virtual environment. Run in the folllowing code on your terminal for doing so:
1.Install Python 3 virtual environment creator

sudo apt install virtualenv python3-virtualenv

2.Create a Python virtual environment for python3. You can only install python3 packages inside this Python virtual
environment. If you also want to install Python 2.x packages, then you need to make another Python virtual environment.

virtualenv -p python3 env

3. This one to at last activate this virtual environment.
source ./env/bin/activate

The new Python virtual environment for python3 will be created in the env directory which is located in the current directory.

About

Kivy based code, very efficient one for understanding the Kivy workflow


Languages

Language:Python 100.0%