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
- Host: GitHub
- URL: https://github.com/abimanyugithub/basic-crud-app-with-django-using-mysql
- Owner: abimanyugithub
- Created: 2024-04-17T08:52:05.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-04-26T13:12:05.000Z (about 1 year ago)
- Last Synced: 2024-11-08T12:14:09.231Z (8 months ago)
- Topics: django-application, mysql-database
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```