This is the skeleton for a python GUI application, With this repository it is intended to have a skeleton of directories and files to begin to create a application with python that has the Model View-Controller (MVC).
- Install Python3 (in OS Fedora 25 use
sudo dnf install python3) - Install Tkinter (in OS Fedora 25 use
sudo dnf install python3-tkinter)- or with pip3...
- For better performance it is recommended to install
virtualenvin the repository, to do this, runvirtualenv venvinside the directory of the repository - Before starting to encode you have to run the following statement so that
Virtual Env is activated:
source venv / bin / activate - Finally, you have to run
pip3 -r install requirements.txtto install the dependencies
Linux:
python3 main.py
Windows:
python ma