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?

MCP_infiltrator
  • 441
  • 1
  • 4
  • 12

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
  • 69,223
  • 56
  • 216
  • 327
Mitch
  • 106,657
  • 24
  • 210
  • 268