An open API service indexing awesome lists of open source software.

https://github.com/abimanyugithub/basic-crud-app-with-django-using-mysql

(Practice) Django CRUD application with MySQL
https://github.com/abimanyugithub/basic-crud-app-with-django-using-mysql

django-application mysql-database

Last synced: 6 months ago
JSON representation

(Practice) Django CRUD application with MySQL

Awesome Lists containing this project

README

        

## 1. Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install foobar.

```bash
pip install django mysqlclient
```
> **Error** while trying to install mysqlclient:
```bash
...
Exception: Can not find valid pkg-config name.
Specify MYSQLCLIENT_CFLAGS and MYSQLCLIENT_LDFLAGS env vars manually
----------------------------------------
ERROR: Command errored out with exit status 1:
...
```
> **Solution**
```bash
sudo apt-get install python3-dev default-libmysqlclient-dev build-essential pkg-config
```