Classification Algorithms Computer.
Setting up and installing this software is ease by just installing Python3, Python3's Tkinter GUI library, Python's MySQL library and other libraries too.
Softwares needed:
- Python3.
- Python3's Tkinter GUI library.
- MySQL.
- Python3 modules: numpy, pandas, mysql.connector
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 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.
-
Open command prompt and then run the following commands to install the required modules:
pip install mysql-connector pandas numpy
For Ubuntu/Debian users:
-
Install Python3 by running the following command in terminal:
sudo apt-get install python3
By default, Debian, Ubuntu or any other Linux distributions come with Python pre-installed.
-
Install MySQL and Python3 pip by running the following commands in the terminal:
sudo apt-get install mysql-server python3-pip
This will install MySQL on your system. Then you may proceed to setup MySQL credentials.
-
Run the following command in the terminal to install the required Python modules:
pip3 install pandas numpy mysql-connector
Following the above installation steps for required softwares will set up an environment to run the Library Management System without any hassles.
For Windows users:
-
First import the 'database.sql' file into your MySQL database.
-
Open your command prompt and navigate to the project's directory and run the following command:
python3 main.py
If all the required dependencies are installed, then a GUI window will open.
-
Configure the database credentials first by entering your database username and password, database name (dataMining) and table name (naiveBayesData / id3Data).
-
Then you may proceed to run the application normally.
For Ubuntu/Debian users:
-
First import the 'database.sql' file into your MySQL database.
-
Open your terminal and navigate to the project's directory and run the following command:
python3 main.py
If all the required dependencies are installed, then a GUI window will open.
-
Configure the database credentials first by entering your database username and password, database name (dataMining) and table name (naiveBayesData / id3Data).
-
Then you may proceed to run the application normally.
- Python3 (Tkinter) - GUI for the software.
- MySQL - Database Management System.
Siddhesh Kudtarkar