Skip to content

MySQL Installation Guide

EvgenyPyankov edited this page Dec 15, 2017 · 2 revisions

Linux:

sudo apt-get install mysql-server

sudo apt-get install python-mysqldb (if it doesn't work try sudo pip install mysql-python)

Windows:

  1. download and install MySQL Installer from dev.mysql.com.

Before you can use MySQL in your project you should create database.

On MySQL Command Line:

1. create database [name]

2. use [name]

In our project name is 'edu_db'

Now you can populate it with data, just run inserts.py script.

python inserts

Clone this wiki locally