DJANGO Django is a high-level Python Web-Development framework. In this post, we will learn how to set up our first Django project with MySql database. Contents Virtual Environment Install Django MySql Setup Create Application Other Setting Virtual Environment Virtual Environment is an extremely useful tool that helps us to keep our coding environment tidy on our computer. Let's create the virtual environment. Create a directory for your project mkdir Django cd Django Install a virtual environment python3 -m venv your_virtual_env_name Working with the virtual environment source your_virtual_env_name/bin/activate Install Django Before installing Django make sure that you are inside your virtual environment. your_virtual_env_name$ Install Django pip install django~=1.11.0 Create Project django-admin startproject your_site_name . MySql Set Up Open your_site_name/setting.py and f...