forked from subhadeeproy3902/Student-Management-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pre-requirements
18 lines (15 loc) · 844 Bytes
/
Pre-requirements
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
1. MySql (Any version)
<< Recommended version is 5.5.22 >> (if .py file is to be run in Python 3.8)
**For PYTHON IDLE** :
Commands to be run in Cmd (Command Prompt)
1. MySql Connector : pip install mysql.connector (For MySql and Python Connectivity)
2. Clrprint : pip install clrprint (For colored prints)
3. Datetime : pip install datetime (If code shows errors i.e datetime isnt installed in your python version)
4. PrettyTable : pip install prettytable (For a tabular format of data output)
**For VS Code** :
Command to be run in the terminal
1. Python Extention
2. MySql Connector : pip install mysql.connector (For MySql and Python Connectivity)
3. Clrprint : pip install clrprint (For colored prints)
4. PrettyTable : pip install prettytable (For a tabular format of data output)
------ Thank You -------