C:\Users\alurilalith.sag\Desktop\website>python manage.py runserver Watching for file changes with StatReloader Exception in thread django-main-thread: Traceback (most recent call last):
django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3.
Asked
Active
Viewed 73 times
-2
-
Does this answer your question? [Django - installing mysqlclient error: mysqlclient 1.3.13 or newer is required; you have 0.9.3](https://stackoverflow.com/questions/55657752/django-installing-mysqlclient-error-mysqlclient-1-3-13-or-newer-is-required) – Alberto Moro Feb 18 '20 at 10:45
-
1I don't mean to be rude, but what is it that you don't understand in the error message ? It clearly states, in all letters, that your currently installed version (0.9.3) of the `mysqlclient` package is not compatible with your version of django and must be upgraded to 1.3.13 or newer. – bruno desthuilliers Feb 18 '20 at 12:25
1 Answers
0
It seems that you either hav pinned the package version of mysqlclient
to version 0.9.3
or one of your other dependencies requires the package in this version.
Have you tried updating mysqlclient
? The current release on pypi is 1.4.6
If you are using a requirements.txt
try changing
mysqlclient==0.9.3
or just mysqlclient
to
mysqlclient==1.3.13

Sven Fritsch
- 86
- 6