Pizza Shop Management System.
Setting up and installing this software is easy by just installing Python3, Python3's Tkinter GUI library, and some Python3 modules.
Softwares needed:
- Python3.
- Python3's Tkinter GUI library.
- MySQL.
- MySQL Python3 module.
Installation links of the required softwares:
- Python3: https://www.python.org/downloads/
- MySQL: https://dev.mysql.com/downloads/
For Windows users:
-
Download Python3 from the above given link and install it. When installing Python3, make sure that under Tcl/Tk you select Will be installed on hard drive. The option 'Tcl/Tk' must be checked to allow Python installer to install Python's Tkinter GUI library.
-
Download MySQL from the official website given above and install it.
-
Open your command prompt and run the following command to install all the required Python3 modules:
pip install mysql-connector
For Ubuntu/Debian users:
-
By default, Debian, Ubuntu or any other Linux distributions come with Python pre-installed.
-
To install Python3's Tkinter GUI library and Python Package Installer (pip), run the following command in the terminal:
sudo apt-get install python3-tk tk-dev python3-pip
-
To install MySQL, run the following command in the terminal:
sudo apt-get install mysql-server
-
Finally, run the following command in the terminal to install all the required Python3 modules:
pip3 install mysql-connector
Following the above installation steps for required softwares will set up an environment to run the Student Management System without any hassles.
For Windows users:
-
First setup your MySQL credentials in the insertData() method in 'functions.py' file.
-
Open your command prompt and navigate to the project's directory and run the following command:
python main.py
For Ubuntu/Debian users:
-
First setup your MySQL credentials in the insertData() method in 'functions.py' file.
-
Open your terminal and navigate to the project's directory and run the following command:
python3 main.py
- Python3 - GUI for the software.
- MySQL - Database Management System.
Siddhesh Kudtarkar