1

Possible Duplicate:
What to install for mysql?

How do I install MySQLdb for my 12.04 LTS machine? I need it for a project I am working on. I see many many options in the Synaptic Package Manager, is there an easier way to install?

1 Answers1

1

To install MySQL on Ubuntu 12.04LTS, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the commands below.

sudo apt-get update && sudo apt-get upgrade

When that is done, run:

sudo apt-get install mysql-server mysql-client

Once all is done, you need to secure, and configure your MySQL installation.

Zanna
  • 72,312
Mitch
  • 109,787