Laptop: Dell Vostro 3590 Ubuntu version: 23.10 How do I install MySQL and well as connectivity to it with Python?
Asked
Active
Viewed 289 times
1 Answers
0
Update Package Index:
sudo apt update
- Install MySQL Server: You can install MySQL Server package using the following command:
sudo apt install mysql-server
Once the installation is complete, the MySQL server should be started automatically. You can quickly check its current status via systemd:
sudo service mysql status
Further steps: https://dev.mysql.com/doc/dev/connector-python/latest/installation.html
Tushar B
- 21