environment: MAC_OS 10.12 Python 3.6 mysql 5.7.25 Django 2.2.3 Prerequisite: Python, Django and MySQL have been successfully installed and can be run separately 1. Database configuration in settings DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', "USER": "user name", "PASSWORD": "your password", "NAME": "db name" } } 2. Change the default database driver 1. Install pymysql 2. Replace the driver Find the main package of the project. For example, if the project is called TEST, find the __init__.py file under the TEST package. Add the following code: import pymysqlpymysql.install_as_MySQLdb() 3. Problem solving: Question 1: mysqlclient version issue """ django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3. """ Solution: Follow the path in the figure to find the corresponding lines 35 and 36 and comment them out; Question 2: String encoding and decoding problem """ AttributeError: 'str' object has no attribute 'decode' """ Solution: Click on the exception tracking information, find line 146 in operations.py and change decode to encode: Test run: PS: The reason for modifying the source code is probably the compatibility issue between Django 2, Python 3 and PyMySQL. In addition, the reason for choosing 2.* is because of the official support time. The default database driver for Django is mysqlclient, but during testing, it was found that it could not run at all, and the import of various mysql libraries failed! ....... Summarize The above is the illustrated tutorial of Django2.* + Mysql5.7 development environment integration introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: In-depth understanding of React Native custom routing management
>>: Detailed explanation of the use of Linux seq command
The specific code is as follows: <a href="...
Table of contents 1. Introduction to NFS 2. NFS C...
Table of contents 1. Install and import 2. Define...
Introduction to Swap Swap (i.e. swap partition) i...
Experimental environment Apache and Tomcat are bo...
Recently, when doing homework, I needed to nest a ...
Table of contents Overview Why choose a framework...
Checkboxes are very common on web pages. Whether ...
XML/HTML CodeCopy content to clipboard <!DOCTY...
Preface The need for real-time database backup is...
Table of contents Preface HTTP HTTP Server File S...
1. Introduction When the amount of data in the da...
First method Alibaba Cloud and Baidu Cloud server...
Modify the group to which a user belongs in Linux...
The default program publishing path of tomcat7 is...